SH\Sh::__call PHP Method

__call() public method

public __call ( $name, $arguments )
    public function __call($name, $arguments)
    {
        $comandArgument = isset($arguments[0]) ? $arguments[0] : null;
        $lineCallback = isset($arguments[1]) ? $arguments[1] : null;
        return $this->runCommand($name, $comandArgument, $lineCallback);
    }