Resque\Helpers\Table::__call PHP Метод

__call() публичный Метод

Pass all called functions to the table helper
public __call ( string $method, array $parameters ) : mixed
$method string
$parameters array
Результат mixed
    public function __call($method, $parameters)
    {
        return call_user_func_array(array($this->table, $method), $parameters);
    }