Passed
Push — feature/initial-implementation ( 88960a...869acf )
by Fike
02:03
created
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,6 +29,6 @@  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
 }
Please login to merge, or discard this patch.
src/API/Annotation/Embeddable.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/Annotation/Listener/EmbeddableAnnotationListener.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;
6 6
 
Please login to merge, or discard this patch.
src/Framework/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function deregisterLoader(LoaderInterface $loader)
55 55
     {
56
-        $this->loaders = array_filter($this->loaders, function (LoaderInterface $item) use ($loader) {
56
+        $this->loaders = array_filter($this->loaders, function(LoaderInterface $item) use ($loader) {
57 57
             return $loader !== $item;
58 58
         });
59 59
         return $this;
Please login to merge, or discard this patch.
src/API/Annotation/Mapping/Views.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.