Skip to content

Commit ee6b400

Browse files
committed
CS Fixes
1 parent 98ad0ee commit ee6b400

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/Doctrine/Extension/ORM/TablePrefixExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private function setJoinTableName(ClassMetadata $classMetadata): void
6565
continue;
6666
}
6767

68-
if ($mapping->inherited !== null) {
68+
if (null !== $mapping->inherited) {
6969
continue;
7070
}
7171

tests/Functional/TestBundle/Entity/DummyUploadableAndPublishable.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Doctrine\ORM\Mapping as ORM;
1616
use Silverback\ApiComponentsBundle\Annotation as Silverback;
1717
use Silverback\ApiComponentsBundle\Entity\Core\AbstractComponent;
18-
use Silverback\ApiComponentsBundle\Entity\Utility\IdTrait;
1918
use Silverback\ApiComponentsBundle\Entity\Utility\PublishableTrait;
2019
use Silverback\ApiComponentsBundle\Entity\Utility\UploadableTrait;
2120
use Symfony\Component\HttpFoundation\File\File;

0 commit comments

Comments
 (0)