Completed
Push — master ( ae5b26...262c7c )
by Evan
10s
created
src/Post/PostTypeBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function supports($features)
70 70
     {
71
-        if (! is_array($features)) {
71
+        if ( ! is_array($features)) {
72 72
             $features = func_get_args();
73 73
         }
74 74
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      */
207 207
     protected function labels()
208 208
     {
209
-        if (! $this->labels) {
209
+        if ( ! $this->labels) {
210 210
             $this->labels = new PostTypeLabels;
211 211
         }
212 212
 
Please login to merge, or discard this patch.
src/Post/PostTypeLabels.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      */
95 95
     protected function merge(LabelsCollection $collection)
96 96
     {
97
-        if (! $this->labels) {
97
+        if ( ! $this->labels) {
98 98
             $this->labels = new Collection;
99 99
         }
100 100
 
Please login to merge, or discard this patch.
src/Support/LabelsCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function replaced()
33 33
     {
34
-        return $this->map(function ($label) {
34
+        return $this->map(function($label) {
35 35
             return $this->replaceWithForm($label);
36 36
         });
37 37
     }
Please login to merge, or discard this patch.