Encore\Admin\Routing\Router::__call PHP Method

__call() public method

Dynamically add routes to admin router.
public __call ( string $method, array $arguments )
$method string
$arguments array
    public function __call($method, $arguments)
    {
        if (method_exists($this->router, $method)) {
            $this->routes[$method][] = $arguments;
        }
    }