ManaPHP\Mvc\Router\Group::add PHP 메소드

add() 공개 메소드

$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
리턴 ManaPHP\Mvc\Router\RouteInterface
    public function add($pattern, $paths = null, $httpMethod = null)
    {
        return $this->_addRoute($pattern, $paths, $httpMethod);
    }