seregazhuk\PinterestBot\Bot::__call PHP Méthode

__call() public méthode

All method calls are proxied to the providers container.
public __call ( string $method, array $parameters ) : mixed
$method string
$parameters array
Résultat mixed
    public function __call($method, $parameters)
    {
        return call_user_func([$this->providersContainer, $method], $parameters);
    }