Passed
Push — master ( a8d415...e9058e )
by Kuts
01:33
created
src/Exception/InoreaderException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Exception;
Please login to merge, or discard this patch.
src/Objects/UserInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.
src/Objects/AddSubscription.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.
src/Objects/UnreadCount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.
src/Objects/Subscriptions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
     public function subscriptions(): array
15 15
     {
16 16
 
17
-        $items = [];
17
+        $items = [ ];
18 18
 
19 19
         foreach ($this->data->subscriptions as $subscription) {
20
-            $items[] = new Subscription($subscription);
20
+            $items[ ] = new Subscription($subscription);
21 21
         }
22 22
 
23 23
         return $items;
Please login to merge, or discard this patch.
src/Objects/ObjectInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.
src/Objects/StreamPreferenceList.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
@@ -49,10 +49,10 @@  discard block
 block discarded – undo
49 49
     public function items(): array
50 50
     {
51 51
 
52
-        $items = [];
52
+        $items = [ ];
53 53
 
54 54
         foreach ($this->data->items as $item) {
55
-            $items[] = new Item($item);
55
+            $items[ ] = new Item($item);
56 56
         }
57 57
 
58 58
         return $items;
Please login to merge, or discard this patch.
src/Objects/Tag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.
src/Objects/Summary.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace ExileeD\Inoreader\Objects;
Please login to merge, or discard this patch.