@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | if ( |
30 | 30 | null === $entity |
31 | - || (! $entity instanceof DateDeletedAwareInterface) |
|
31 | + || (!$entity instanceof DateDeletedAwareInterface) |
|
32 | 32 | || DeleteMode::HARD === $deleteMode |
33 | 33 | ) { |
34 | 34 | return; |
@@ -1,1 +1,1 @@ |
||
1 | -<?php declare(strict_types=1); namespace Arp\DoctrineEntityRepository; /** * @author Alex Patterson <[email protected]> * @package Arp\DoctrineEntityRepository */ interface EntityRepositoryProviderInterface { /** * @param string $entityName * * @return EntityRepositoryInterface|null */ public function getEntityRepository(string $entityName): ?EntityRepositoryInterface; } |
|
2 | 1 | \ No newline at end of file |
2 | +<?php declare(strict_types=1); namespace Arp\DoctrineEntityRepository; /** * @author Alex Patterson <[email protected]> * @package Arp\DoctrineEntityRepository */ interface EntityRepositoryProviderInterface { /** * @param string $entityName * * @return EntityRepositoryInterface|null */ public function getEntityRepository(string $entityName): ?EntityRepositoryInterface; } |
|
3 | 3 | \ No newline at end of file |
@@ -1,1 +1,1 @@ |
||
1 | -<?php declare(strict_types=1); namespace Arp\DoctrineEntityRepository; /** * @author Alex Patterson <[email protected]> * @package Arp\DoctrineEntityRepository */ class EntityRepository extends AbstractEntityRepository { } |
|
2 | 1 | \ No newline at end of file |
2 | +<?php declare(strict_types=1); namespace Arp\DoctrineEntityRepository; /** * @author Alex Patterson <[email protected]> * @package Arp\DoctrineEntityRepository */ class EntityRepository extends AbstractEntityRepository { } |
|
3 | 3 | \ No newline at end of file |