updated eventdispatcher

This commit is contained in:
kremsy
2015-01-19 11:11:45 +01:00
parent 0ca7d2dd15
commit f97109a75b
18 changed files with 123 additions and 426 deletions

View File

@ -118,7 +118,7 @@ class GenericEvent extends Event implements \ArrayAccess, \IteratorAggregate
*
* @param string $key Key of arguments array.
*
* @return boolean
* @return bool
*/
public function hasArgument($key)
{
@ -167,7 +167,7 @@ class GenericEvent extends Event implements \ArrayAccess, \IteratorAggregate
*
* @param string $key Array key.
*
* @return boolean
* @return bool
*/
public function offsetExists($key)
{
@ -175,7 +175,7 @@ class GenericEvent extends Event implements \ArrayAccess, \IteratorAggregate
}
/**
* IteratorAggregate for iterating over the object like an array
* IteratorAggregate for iterating over the object like an array.
*
* @return \ArrayIterator
*/