mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/12090] Make provider a service and inject it into the helper
PHPBB3-12090
This commit is contained in:
@@ -31,10 +31,8 @@ class phpbb_controller_controller_test extends phpbb_test_case
|
||||
|
||||
public function test_provider()
|
||||
{
|
||||
$provider = new \phpbb\controller\provider;
|
||||
$routes = $provider
|
||||
->import_paths_from_finder($this->extension_manager->get_finder())
|
||||
->find(__DIR__);
|
||||
$provider = new \phpbb\controller\provider($this->extension_manager->get_finder());
|
||||
$routes = $provider->find(__DIR__);
|
||||
|
||||
// This will need to be updated if any new routes are defined
|
||||
$this->assertInstanceOf('Symfony\Component\Routing\Route', $routes->get('core_controller'));
|
||||
|
Reference in New Issue
Block a user