Passed
Push — feature/initial-implementation ( 84910d...4684a2 )
by Fike
01:45
created
src/Entity/Mapping/PropertyMapping.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\Entity\Mapping;
6 6
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     /**
145 145
      * @return null|string[]
146 146
      */
147
-    public function getForcedViewNames(): ?array
147
+    public function getForcedViewNames(): ? array
148 148
     {
149 149
         return $this->forcedViewNames;
150 150
     }
Please login to merge, or discard this patch.
src/Mapping/Manager.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\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Mapping/Type/Parameter/FieldDataParameter.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\Mapping\Type\Parameter;
6 6
 
Please login to merge, or discard this patch.
src/Mapping/Conversion/Converter.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\Mapping\Conversion;
6 6
 
Please login to merge, or discard this patch.
src/Utility/Classes.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\Utility;
6 6
 
@@ -8,6 +8,6 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public static function normalizeAbsoluteName(string $className): string
10 10
     {
11
-        return '\\' . ltrim($className, '\\');
11
+        return '\\'.ltrim($className, '\\');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
tests/Suite/Unit/Mapping/PropertyMappingViewTest.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\Test\Suite\Unit\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/API/Mapping/Type/TypeInterface.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\Mapping\Type;
6 6
 
Please login to merge, or discard this patch.
src/API/Mapping/Conversion/ContextInterface.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\Mapping\Conversion;
6 6
 
Please login to merge, or discard this patch.
src/API/Mapping/Conversion/DefaultContext.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\Mapping\Conversion;
6 6
 
Please login to merge, or discard this patch.