Skip to content

Commit

Permalink
Revert a typehint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Pustułka committed Jan 13, 2017
1 parent fcf7c07 commit cb77b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Event/Event.php
Expand Up @@ -74,9 +74,9 @@ class Event
*
* @param string $name Name of the event
* @param object|null $subject the object that this event applies to (usually the object that is generating the event)
* @param array|null $data any value you wish to be transported with this event to it can be read by listeners
* @param array|\ArrayAccess|null $data any value you wish to be transported with this event to it can be read by listeners
*/
public function __construct($name, $subject = null, array $data = null)
public function __construct($name, $subject = null, $data = null)
{
$this->_name = $name;
$this->_data = (array)$data;
Expand Down

0 comments on commit cb77b43

Please sign in to comment.