Detailed Description
Definition at line 13 of file HiddenClass.php.
Constructor & Destructor Documentation
__construct |
( |
|
$className, |
|
|
|
$originalArguments |
|
) |
| |
Member Function Documentation
__call |
( |
|
$funcName, |
|
|
|
$args |
|
) |
| |
Definition at line 48 of file HiddenClass.php.
{
return call_user_func_array(array($this->obj, $funcName), $args);
}
Definition at line 23 of file HiddenClass.php.
{
switch(count($arg)){
case 0:
$this->obj = new $this->class();
break;
case 1:
$this->obj = new $this->class($arg[0]);
break;
case 2:
$this->obj = new $this->class($arg[1]);
break;
case 3:
$this->obj = new $this->class($arg[2]);
break;
default:
throw new RuntimeException('Please expand this function yourself :)');
break;
}
}
Field Documentation
The documentation for this class was generated from the following file: