__call() public method

public __call ( $name, $arguments )
示例#1
0
 /**
  * {@inheritdoc}
  * @see Scalr_Model::__call()
  */
 public function __call($name, $arguments)
 {
     if ($this->getContainer()->initialized($name, true)) {
         return call_user_func_array(array($this->getContainer(), $name), $arguments);
     } else {
         return parent::__call($name, $arguments);
     }
 }