Allow one call by event

This commit is contained in:
Frederic Guillot
2016-01-16 21:35:25 -05:00
parent 6a7b8ec60f
commit ee19c62648
2 changed files with 6 additions and 6 deletions

View File

@@ -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;
}