Passed
Pull Request — master (#5)
by Alex
03:09
created
src/Persistence/Event/Listener/DateDeletedListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/EntityRepositoryProviderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,1 +1,1 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/EntityRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,1 +1,1 @@
 block discarded – undo
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
Please login to merge, or discard this patch.