Commit a3a4dbaa by Alexander Makarov

unset is a lang contruct so can't be returned

parent fbef5223
...@@ -209,7 +209,8 @@ class Component extends Object ...@@ -209,7 +209,8 @@ class Component extends Object
if (method_exists($this, $setter)) { // write property if (method_exists($this, $setter)) { // write property
return $this->$setter(null); return $this->$setter(null);
} elseif (method_exists($this, $name) && strncasecmp($name, 'on', 2) === 0) { // event } elseif (method_exists($this, $name) && strncasecmp($name, 'on', 2) === 0) { // event
return unset($this->_e[strtolower($name)]); unset($this->_e[strtolower($name)]);
return;
} elseif (isset($this->_b[$name])) { // behavior } elseif (isset($this->_b[$name])) { // behavior
return $this->detachBehavior($name); return $this->detachBehavior($name);
} elseif (is_array($this->_b)) { // behavior property } elseif (is_array($this->_b)) { // behavior property
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment