Fix variable name in isset magic method

This commit is contained in:
Niclas Leon Bock 2014-06-17 23:36:12 +02:00
parent df25c5d9f7
commit 9c5abfb3f1
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class CodeBase extends Extendable implements ArrayAccess
* @param string $key
* @return void
*/
public function __isset($key)
public function __isset($name)
{
return isset($this->page->{$name});
}