ManaPHP\Mvc\Router\Group::add PHP Method

add() public method

$router->add('/about', 'About::index');
public add ( string $pattern, string | array $paths = null, string | array $httpMethod = null ) : ManaPHP\Mvc\Router\RouteInterface
$pattern string
$paths string | array
$httpMethod string | array
return ManaPHP\Mvc\Router\RouteInterface
    public function add($pattern, $paths = null, $httpMethod = null)
    {
        return $this->_addRoute($pattern, $paths, $httpMethod);
    }