Advertisement
wingman007

PHP __call($method, $arguments) and __clone()

Jul 18th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1.     /**
  2.      * @param $method
  3.      * @param $arguments
  4.      * @return mixed
  5.      * @throws Exception\InvalidArgumentException
  6.      */
  7.     public function __call($method, $arguments)
  8.     {
  9.         if ($this->featureSet->canCallMagicCall($method)) {
  10.             return $this->featureSet->callMagicCall($method, $arguments);
  11.         }
  12.         throw new Exception\InvalidArgumentException('Invalid method (' . $method . ') called, caught by ' . __CLASS__ . '::__call()');
  13.     }
  14.  
  15.     /**
  16.      * __clone
  17.      */
  18.     public function __clone()
  19.     {
  20.         $this->resultSetPrototype = (isset($this->resultSetPrototype)) ? clone $this->resultSetPrototype : null;
  21.         $this->sql = clone $this->sql;
  22.         if (is_object($this->table)) {
  23.             $this->table = clone $this->table;
  24.         }
  25.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement