@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | { |
109 | 109 | $reflection = $this->getActionReflection(); |
110 | 110 | |
111 | - if (! is_null($reflection)) { |
|
111 | + if (!is_null($reflection)) { |
|
112 | 112 | return $reflection->getDocComment(); |
113 | 113 | } |
114 | 114 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | } |
139 | 139 | |
140 | 140 | // We don't care if argument is anything but FormRequest |
141 | - if (! is_subclass_of($class->name, FormRequest::class)) { |
|
141 | + if (!is_subclass_of($class->name, FormRequest::class)) { |
|
142 | 142 | continue; |
143 | 143 | } |
144 | 144 | |
@@ -187,14 +187,14 @@ discard block |
||
187 | 187 | list($controller, $action) = explode('@', $uses); |
188 | 188 | |
189 | 189 | // Controller is missing. |
190 | - if (! class_exists($controller)) { |
|
190 | + if (!class_exists($controller)) { |
|
191 | 191 | $this->setError('uses', 'controller does not exists'); |
192 | 192 | |
193 | 193 | return null; |
194 | 194 | } |
195 | 195 | |
196 | 196 | // Action is missing. |
197 | - if (! method_exists($controller, $action)) { |
|
197 | + if (!method_exists($controller, $action)) { |
|
198 | 198 | $this->setError('uses', 'controller@method does not exists'); |
199 | 199 | |
200 | 200 | return null; |