Test Failed
Push — feature/add-more-data-types ( fed944...c872db )
by Peter
02:49
created
src/FakeCarDataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * @throws Exception
50 50
      */
51
-    public function getVehicleFuelType(int $count = 1): string|array
51
+    public function getVehicleFuelType(int $count = 1): string | array
52 52
     {
53 53
         return FakeCarHelper::getArrayData($this->vehicleData::$vehicleFuelTypes, $count);
54 54
     }
Please login to merge, or discard this patch.
src/FakeCarHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             return [];
74 74
         }
75 75
 
76
-        if (! $count) {
76
+        if (!$count) {
77 77
             $count = random_int(1, $valuesLength);
78 78
         }
79 79
 
Please login to merge, or discard this patch.
src/FakeCarDataProviderInterface.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
     public function getVehicleType(): string;
14 14
 
15
-    public function getVehicleFuelType(): string|array;
15
+    public function getVehicleFuelType(): string | array;
16 16
 
17 17
     public function getVehicleDoorCount(): int;
18 18
 
Please login to merge, or discard this patch.