@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | public function create() |
| 21 | 21 | { |
| 22 | 22 | $data = input('option'); |
| 23 | - if (! $data || ! is_array($data)) { |
|
| 23 | + if (!$data || !is_array($data)) { |
|
| 24 | 24 | return Response::make('Error', 422); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | public function createValue() |
| 45 | 45 | { |
| 46 | 46 | $data = input('value'); |
| 47 | - if (! $data || ! is_array($data)) { |
|
| 47 | + if (!$data || !is_array($data)) { |
|
| 48 | 48 | return Response::make('Error', 422); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | public function validate() |
| 69 | 69 | { |
| 70 | 70 | $data = input('option'); |
| 71 | - if (! $data || ! is_array($data)) { |
|
| 71 | + if (!$data || !is_array($data)) { |
|
| 72 | 72 | return Response::make('Error', 422); |
| 73 | 73 | } |
| 74 | 74 | |