Ouzo\Utilities\FluentFunction::__call PHP Method

__call() public method

public __call ( $name, $arguments )
    public function __call($name, $arguments)
    {
        $this->_functions[] = call_user_func_array('Ouzo\\Utilities\\Functions::' . $name, $arguments);
        return $this;
    }

Usage Example

Esempio n. 1
0
 public function __call($name, $arguments)
 {
     parent::__call($name, $arguments);
     $this->description .= '->';
     $this->description .= MethodCall::newInstance($name, $arguments)->toString();
     return $this;
 }