File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
use Symfony \Component \Console \Output \OutputInterface ;
18
18
use Symfony \Component \Console \Output \Output ;
19
19
use Symfony \Component \Routing \Matcher \Dumper \ApacheMatcherDumper ;
20
- use Symfony \Component \Routing \RouterInterface ;
20
+ use Symfony \Component \Routing \Router ;
21
21
22
22
/**
23
23
* RouterApacheDumperCommand.
@@ -35,7 +35,7 @@ public function isEnabled()
35
35
return false ;
36
36
}
37
37
$ router = $ this ->getContainer ()->get ('router ' );
38
- if (!$ router instanceof RouterInterface ) {
38
+ if (!$ router instanceof Router ) {
39
39
return false ;
40
40
}
41
41
return parent ::isEnabled ();
Original file line number Diff line number Diff line change 17
17
use Symfony \Component \Console \Output \OutputInterface ;
18
18
use Symfony \Component \Console \Output \Output ;
19
19
use Symfony \Component \Routing \Matcher \Dumper \ApacheMatcherDumper ;
20
- use Symfony \Component \Routing \RouterInterface ;
20
+ use Symfony \Component \Routing \Router ;
21
21
22
22
/**
23
23
* A console command for retrieving information about routes
@@ -35,7 +35,7 @@ public function isEnabled()
35
35
return false ;
36
36
}
37
37
$ router = $ this ->getContainer ()->get ('router ' );
38
- if (!$ router instanceof RouterInterface ) {
38
+ if (!$ router instanceof Router ) {
39
39
return false ;
40
40
}
41
41
return parent ::isEnabled ();
You can’t perform that action at this time.
0 commit comments