Skip to content

Commit

Permalink
PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Jun 19, 2023
1 parent fbe93d1 commit 19d75d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Routing/RoutingAnnotationLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function load($resource, ?string $type = null): RouteCollection
* @param mixed $resource
* @param ?string $type
*/
public function supports($resource, $type = null): bool
public function supports($resource, ?string $type = null): bool
{
return 'auditor' === $type;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ protected function registerCompilerPass(ContainerBuilder $container): void
$container->addCompilerPass(new DoctrineProviderConfigurationCompilerPass());
}

// public function testCompilerPass(): void
// {
// $this->compile();
//
// $serviceId = 'dh_auditor.provider.doctrine.storage_services.doctrine.orm.default_entity_manager';
// $this->assertContainerBuilderHasAlias($serviceId, StorageService::class);
// $this->assertContainerBuilderHasService($serviceId, StorageService::class);
// }
// public function testCompilerPass(): void
// {
// $this->compile();
//
// $serviceId = 'dh_auditor.provider.doctrine.storage_services.doctrine.orm.default_entity_manager';
// $this->assertContainerBuilderHasAlias($serviceId, StorageService::class);
// $this->assertContainerBuilderHasService($serviceId, StorageService::class);
// }
}

0 comments on commit 19d75d2

Please sign in to comment.