Passed
Push — feature/initial-implementation ( 79751f...3b7c72 )
by Fike
01:53
created
src/API/Entity/Indexing/IndexingInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 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\Indexing;
6 6
 
7 7
 interface IndexingInterface
8 8
 {
9
-    public function getReadIndices(): array ;
10
-    public function getWriteIndices(): array ;
9
+    public function getReadIndices(): array;
10
+    public function getWriteIndices(): array;
11 11
     public function getType(): string;
12 12
     public function getOptions(): array;
13 13
 }
Please login to merge, or discard this patch.
src/API/Entity/Mapping/ClassMappingInterface.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/PropertyMappingViewInterface.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/PropertyMappingInterface.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
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * @return string[]|null
28 28
      */
29
-    public function getForcedViewNames(): ?array;
29
+    public function getForcedViewNames(): ? array;
30 30
 
31 31
     /**
32 32
      * @param string[] $names
Please login to merge, or discard this patch.
src/API/Entity/Mapping/ClassMappingViewInterface.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/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\Entity;
6 6
 
Please login to merge, or discard this patch.
src/API/Entity/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;
6 6
 
Please login to merge, or discard this patch.
src/API/Entity/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;
6 6
 
Please login to merge, or discard this patch.
src/API/Annotation/Mapping/AbstractParameterAnnotation.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;
6 6
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @return array
29 29
      */
30
-    public function getViews(): ?array
30
+    public function getViews(): ? array
31 31
     {
32 32
         return $this->views;
33 33
     }
Please login to merge, or discard this patch.