We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c307f98 commit 3d006bfCopy full SHA for 3d006bf
Tests/Functional/Doctrine/Phpcr/RouteProviderTest.php
@@ -49,10 +49,7 @@ public function testGetRouteCollectionForRequest()
49
50
$routes = $this->repository->getRouteCollectionForRequest(Request::create('/testroute/noroute/child'));
51
$this->assertCount(3, $routes);
52
-
53
- foreach ($routes as $route) {
54
- $this->assertInstanceOf('Symfony\\Cmf\\Component\\Routing\\RouteObjectInterface', $route);
55
- }
+ $this->assertContainsOnlyInstancesOf('Symfony\\Cmf\\Component\\Routing\\RouteObjectInterface', $routes);
56
}
57
58
public function testFindNophpcrUrl()
0 commit comments