Completed
Pull Request — master (#81)
by
unknown
03:04
created
Zewa/DIContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 
62 62
         // If there is no constructor, there is no
63 63
         // dependencies, which means that our job is done.
64
-        if (! $constructor) {
64
+        if (!$constructor) {
65 65
             $dependency = new $class;
66 66
             if ($share === true) {
67 67
                 $this->dependencies[$class] = $dependency;
Please login to merge, or discard this patch.
Zewa/View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
             $this->view = $return = $this->process($view);
134 134
 
135
-            if (! is_null($this->layout)) {
135
+            if (!is_null($this->layout)) {
136 136
                 $return = $this->process($this->layout);
137 137
             }
138 138
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                 $this->view = $this->process($this->view);
143 143
             }
144 144
 
145
-            if (! is_null($this->layout)) {
145
+            if (!is_null($this->layout)) {
146 146
                 return $this->process($this->layout);
147 147
             } else {
148 148
                 return $this->view;
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
         }
273 273
 
274 274
         foreach ($this->queuedCSS as $sheet) {
275
-            $string .= '<link rel="stylesheet" href="' . $sheet .'">' . "\r\n";
275
+            $string .= '<link rel="stylesheet" href="' . $sheet . '">' . "\r\n";
276 276
         }
277 277
 
278 278
         return $string;
Please login to merge, or discard this patch.
Zewa/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Zewa;
5 5
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $result = [];
134 134
 
135 135
         foreach ($this->collection as $key => $item) {
136
-            if (! $func($key, $item)) {
136
+            if (!$func($key, $item)) {
137 137
                 $result[$key] = $item;
138 138
             }
139 139
         }
Please login to merge, or discard this patch.