diff options
Diffstat (limited to 'app/Subscriber/BaseSubscriber.php')
-rw-r--r-- | app/Subscriber/BaseSubscriber.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/Subscriber/BaseSubscriber.php b/app/Subscriber/BaseSubscriber.php index 875c5e26..2e41da76 100644 --- a/app/Subscriber/BaseSubscriber.php +++ b/app/Subscriber/BaseSubscriber.php @@ -21,19 +21,19 @@ class BaseSubscriber extends Base private $called = array(); /** - * Check if a method has been executed + * Check if a listener has been executed * * @access public - * @param string $method + * @param string $key * @return boolean */ - public function isExecuted($method = '') + public function isExecuted($key = '') { - if (isset($this->called[$method])) { + if (isset($this->called[$key])) { return true; } - $this->called[$method] = true; + $this->called[$key] = true; return false; } |