PR review fixes vol. 2

This commit is contained in:
Mateusz Zalewski 2019-05-16 13:41:05 +02:00
parent e54a65c8f6
commit 424d511d5f
No known key found for this signature in database
GPG key ID: 0545A7503DD474B8
5 changed files with 8 additions and 9 deletions

View file

@ -26,7 +26,7 @@ taxons etc. have to be created with at an english name at least.
Currency
--------
Each channel can use multiple **Currencies**, with ratio between them configured by **Exchange rates**.
Each channel operates only on one **Base Currency**, but prices can be shown in multiple **Currencies**, with a ratio between them configured by **Exchange rates**.
For now, the only available currency should be **USD**, which was also created by the ``sylius:install`` command.
.. image:: /_images/getting-started-with-sylius/currency.png

View file

@ -69,7 +69,7 @@ in the calculator service, and a proper service registration in the ``services.y
final class ParcelShippingCalculatorType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('size', NumberType::class)

View file

@ -24,8 +24,7 @@ the checkout or not? Take a while to explore these options later, right now let'
Summary
-------
Great, the first stage is done! The whole checkout process is described in :doc:`this part of the documentation </book/orders/checkout>`,
it's quite natural and logical, so it should not be a problem to understand it.
Great, the first stage is done! The whole checkout process is described in :doc:`this part of the documentation </book/orders/checkout>`.
.. image:: /_images/getting-started-with-sylius/checkout-summary.png

View file

@ -33,7 +33,7 @@ It will create a ``MyFirstShop`` directory with a brand new Sylius application i
Beware! The next step includes the database setup. It will set your database credentials
(username, password, and database name) in the file with environment variables (``.env`` is the most basic one).
To launch a Sylius application, inidial data has to be set up: an administrator account and base locale.
To launch a Sylius application initial data has to be set up: an administrator account and base locale.
Run the Sylius installation command to do that.
.. code-block:: bash

View file

@ -1,10 +1,10 @@
Plugin installation
===================
Sylius is easy to customize to your business needs, but not all of the customizations you have to do on your own! Sylius
supports creating plugins, that are the best way to extend its functionality and share these new features with the Community.
You can already benefit from some plugins developed by us (Sylius Core team) or the Community. All of the plugins officially
approved are listed on `our website <https://sylius.com/plugins/>`_, but even more of them can be seen in the Sylius ecosystem.
Sylius is easy to customize to your business needs, but not all of the customizations you have to do on your own!
Sylius supports creating plugins, that are the best way to extend its functionality and share these new features with the Community.
You can already benefit from some plugins developed by us (Sylius Core team) or the Community.
All of the plugins officially approved are listed on `our website <https://sylius.com/plugins/>`_, but even more of them can be seen in the Sylius ecosystem.
To give you a quick overview of how easy-to-use and powerful plugins can be, lets install the **SyliusCmsPlugin** (developed
by **BitBag**), one of the most popular extensions to Sylius.