Passed
Push — feature/initial-implementation ( 70fbec...2d1ee1 )
by Fike
02:35
created
src/API/Entity/Mapping/ProviderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\API\Entity\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/API/Entity/Mapping/ClassMappingInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\API\Entity\Mapping;
6 6
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function getProperty(string $name): PropertyMappingInterface;
30 30
     public function requestProperty(string $name): PropertyMappingInterface;
31 31
 
32
-    public function getIgnoredParentProperties(): ?array;
32
+    public function getIgnoredParentProperties(): ? array;
33 33
     public function setIgnoredParentProperties(string ...$properties): ClassMappingInterface;
34 34
     public function inheritsParentMapping(): bool;
35 35
     public function setInheritsParentMapping(bool $value): ClassMappingInterface;
Please login to merge, or discard this patch.
src/API/Entity/ProviderInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\API\Entity;
6 6
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * @param string $name
31 31
      * @return EntityInterface[]|null
32 32
      */
33
-    public function findHierarchy(string $name): ?array;
33
+    public function findHierarchy(string $name): ? array;
34 34
     public function findResolved(string $name): ?EntityInterface;
35 35
     public function exists(string $name): bool;
36 36
 }
Please login to merge, or discard this patch.
src/API/Annotation/Mapping/TargetEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\API\Annotation\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/API/Annotation/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\API\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Mapping/EntityProviderWrapperMappingProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\Entity\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Mapping/Inheritance/Combiner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\Entity\Mapping\Inheritance;
6 6
 
Please login to merge, or discard this patch.
src/Entity/Inheritance/Resolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\Entity\Inheritance;
6 6
 
Please login to merge, or discard this patch.
Listener/Mapping/Property/PropertyTargetEntityAnnotationListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AmaTeam\ElasticSearch\Entity\Annotation\Listener\Mapping\Property;
6 6
 
Please login to merge, or discard this patch.