Skip to content

Commit

Permalink
Remove useless docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Oct 29, 2017
1 parent bba1979 commit 10c217c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
11 changes: 0 additions & 11 deletions DependencyInjection/RegisterListenersPass.php
Expand Up @@ -19,19 +19,8 @@
*/
class RegisterListenersPass implements CompilerPassInterface
{
/**
* @var string
*/
protected $dispatcherService;

/**
* @var string
*/
protected $listenerTag;

/**
* @var string
*/
protected $subscriberTag;

/**
Expand Down
2 changes: 1 addition & 1 deletion EventDispatcherInterface.php
Expand Up @@ -26,7 +26,7 @@ interface EventDispatcherInterface
* @param string $eventName The name of the event to dispatch. The name of
* the event is the name of the method that is
* invoked on listeners.
* @param Event $event the event to pass to the event handlers/listeners
* @param Event $event The event to pass to the event handlers/listeners
* If not supplied, an empty Event instance is created
*
* @return Event
Expand Down
11 changes: 1 addition & 10 deletions GenericEvent.php
Expand Up @@ -20,22 +20,13 @@
*/
class GenericEvent extends Event implements \ArrayAccess, \IteratorAggregate
{
/**
* Event subject.
*
* @var mixed usually object or callable
*/
protected $subject;

/**
* Array of arguments.
*/
protected $arguments;

/**
* Encapsulate an event with $subject and $args.
*
* @param mixed $subject The subject of the event, usually an object
* @param mixed $subject The subject of the event, usually an object or a callable
* @param array $arguments Arguments to store in the event
*/
public function __construct($subject = null, array $arguments = array())
Expand Down

0 comments on commit 10c217c

Please sign in to comment.