Passed
Push — feature/initial-implementation ( fae671...591f29 )
by Fike
02:37
created
src/API/Indexing.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;
6 6
 
Please login to merge, or discard this patch.
src/API/MappingInterface.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;
6 6
 
Please login to merge, or discard this patch.
src/API/Annotation/Mapping/Infrastructure/ViewAwareAnnotationTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     /**
13 13
      * @return string[]|null
14 14
      */
15
-    public function getViews(): ?array
15
+    public function getViews(): ? array
16 16
     {
17 17
         return $this->views;
18 18
     }
Please login to merge, or discard this patch.
src/API/Annotation/Mapping/Infrastructure/ViewAwareAnnotationInterface.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\Annotation\Mapping\Infrastructure;
6 6
 
@@ -9,5 +9,5 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * @return string[]|null
11 11
      */
12
-    public function getViews(): ?array;
12
+    public function getViews(): ? array;
13 13
 }
Please login to merge, or discard this patch.
src/API/EntityInterface.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;
6 6
 
Please login to merge, or discard this patch.
src/API/Entity/Mapping/Property/ViewInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * @return string[]|null
19 19
      */
20
-    public function getChildViews(): ?array;
20
+    public function getChildViews(): ? array;
21 21
     public function shouldAppendChildViews(): bool;
22 22
 }
Please login to merge, or discard this patch.
src/API/Entity/Mapping/Structure/MappingInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     /**
17 17
      * @return string[]|null
18 18
      */
19
-    public function getIgnoredParentProperties(): ?array;
19
+    public function getIgnoredParentProperties(): ? array;
20 20
 
21 21
     /**
22 22
      * @return PropertyMappingInterface[]
Please login to merge, or discard this patch.
src/API/Entity/Descriptor/LoaderInterface.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\Descriptor;
6 6
 
Please login to merge, or discard this patch.
src/API/Entity/Validation/ValidationException.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\Validation;
6 6
 
Please login to merge, or discard this patch.