Skip to content

small improvements #11415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configuration/override_dir_structure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ configuration option to define your own translations directory (or directories):
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:twig="http://symfony.com/schema/dic/twig"
xsi:schemaLocation="http://symfony.com/schema/dic/services
http://symfony.com/schema/dic/services/services-1.0.xsd
https://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/twig
https://symfony.com/schema/dic/twig/twig-1.0.xsd">

Expand Down
2 changes: 1 addition & 1 deletion messenger/multiple_buses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Type-hints and Auto-wiring

Auto-wiring is a great feature that allows you to reduce the amount of configuration
required for your service container to be created. By using ``MessageBusInterface``
as argument typehint in your services, the default configured bus will be injected
as argument type-hint in your services, the default configured bus will be injected
(i.e ``messenger.bus.commands`` in above examples).

When working with multiple buses, you can use the ``DependencyInjection`` component's
Expand Down
4 changes: 2 additions & 2 deletions security/form_login_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ Edit the ``security.yml`` file in order to allow access for anyone to the
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:srv="http://symfony.com/schema/dic/services"
xsi:schemaLocation="http://symfony.com/schema/dic/services
http://symfony.com/schema/dic/services/services-1.0.xsd">
https://symfony.com/schema/dic/services/services-1.0.xsd">

<config>
<rule path="^/login$" role="IS_AUTHENTICATED_ANONYMOUSLY" />
<rule path="^/login$" role="IS_AUTHENTICATED_ANONYMOUSLY"/>
<!-- ... -->
</config>
</srv:container>
Expand Down