PhpSpec\ObjectBehavior::__call PHP 메소드

__call() 공개 메소드

Proxies all calls to the PhpSpec subject
public __call ( string $method, array $arguments = [] ) : mixed
$method string
$arguments array
리턴 mixed
    public function __call($method, array $arguments = array())
    {
        return call_user_func_array(array($this->object, $method), $arguments);
    }