Phalcon\Test\Unit\Mvc\RouterTest::pathsProvider PHP Method

pathsProvider() protected method

protected pathsProvider ( )
    protected function pathsProvider()
    {
        return [['/route0', 'Feed', ['controller' => 'feed']], ['/route1', 'Feed::get', ['controller' => 'feed', 'action' => 'get']], ['/route2', 'News::Posts::show', ['module' => 'News', 'controller' => 'posts', 'action' => 'show']], ['/route3', 'MyApp\\Controllers\\Posts::show', ['namespace' => 'MyApp\\Controllers', 'controller' => 'posts', 'action' => 'show']], ['/route3', 'MyApp\\Controllers\\::show', ['controller' => '', 'action' => 'show']], ['/route3', 'News::MyApp\\Controllers\\Posts::show', ['module' => 'News', 'namespace' => 'MyApp\\Controllers', 'controller' => 'posts', 'action' => 'show']], ['/route3', '\\Posts::show', ['controller' => 'posts', 'action' => 'show']]];
    }