Skip to content

Commit 7d9938b

Browse files
committed
phpcs
1 parent e65f033 commit 7d9938b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/DoctrineServiceProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
use function assert;
3737
use function class_exists;
38+
use function config;
3839
use function config_path;
3940

4041
class DoctrineServiceProvider extends ServiceProvider

tests/Feature/DoctrineServiceProviderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function testRegistryIsRegistered(): void
1616

1717
$this->assertInstanceOf(
1818
ManagerRegistry::class,
19-
$registry
19+
$registry,
2020
);
2121
}
2222

@@ -34,7 +34,7 @@ public function testMetaDataFactory(): void
3434

3535
$this->assertInstanceOf(
3636
ClassMetadataFactory::class,
37-
$metaDataFactory
37+
$metaDataFactory,
3838
);
3939
}
4040
}

0 commit comments

Comments
 (0)