@@ -20,7 +20,6 @@ |
||
20 | 20 | // use Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\AddConsoleCommandPass; |
21 | 21 | use Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\ControllerArgumentValueResolverPass; // 2 versions of this! |
22 | 22 | use Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\RoutingResolverPass; |
23 | -use Symfony\Bundle\FrameworkBundle\FrameworkBundle; |
|
24 | 23 | use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; |
25 | 24 | use Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader; |
26 | 25 | use Symfony\Bundle\FrameworkBundle\Routing\RedirectableUrlMatcher; |
@@ -25,7 +25,6 @@ |
||
25 | 25 | use Symfony\Component\HttpKernel\Controller\ArgumentResolver\SessionValueResolver; |
26 | 26 | use Symfony\Component\HttpKernel\Controller\ArgumentResolver\VariadicValueResolver; |
27 | 27 | use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver; |
28 | -use Symfony\Component\HttpKernel\Controller\ControllerResolver; |
|
29 | 28 | use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory; |
30 | 29 | use Symfony\Component\HttpKernel\DependencyInjection\ControllerArgumentValueResolverPass; |
31 | 30 | use Symfony\Component\HttpKernel\DependencyInjection\RegisterControllerArgumentLocatorsPass; |
@@ -23,7 +23,10 @@ |
||
23 | 23 | |
24 | 24 | public function testIndex() |
25 | 25 | { |
26 | - if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) $this->markTestIncomplete(); // Test does not work any more with Symfony 3.4 |
|
26 | + if ('3.4.0' >= Symfony\Component\HttpKernel\Kernel::VERSION) { |
|
27 | + $this->markTestIncomplete(); |
|
28 | + } |
|
29 | + // Test does not work any more with Symfony 3.4 |
|
27 | 30 | |
28 | 31 | $client = static::createClient(); |
29 | 32 |