8000 consistent spelling by xabbuh · Pull Request #4671 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

consistent spelling #4671

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 16 commits into from
May 22, 2015
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
unify event subscriber usages
  • Loading branch information
xabbuh committed May 1, 2015
commit b77465103bd49ac41dc6aa4299dec7068e620144
4 changes: 2 additions & 2 deletions components/event_dispatcher/container_aware_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ method where the ``$callback`` is an array of ``array($serviceId, $methodName)``
Adding Subscriber Services
~~~~~~~~~~~~~~~~~~~~~~~~~~

``EventSubscribers`` can be added using the
Event subscribers can be added using the
:method:`Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher::addSubscriberService`
method where the first argument is the service ID of the subscriber service,
and the second argument is the service's class name (which must implement
Expand All @@ -64,7 +64,7 @@ and the second argument is the service's class name (which must implement
'StoreSubscriber'
);

The ``EventSubscriberInterface`` will be exactly as you would expect::
The ``EventSubscriberInterface`` is exactly as you would expect::

use Symfony\Component\EventDispatcher\EventSubscriberInterface;
// ...
Expand Down
0