We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | $routeFilePath = base_path($this->option('route-file')); |
45 | 45 | |
46 | - if (! file_exists($routeFilePath)) { |
|
46 | + if (!file_exists($routeFilePath)) { |
|
47 | 47 | if ($routeFilePath !== base_path($this->backpackCustomRouteFile)) { |
48 | 48 | $this->info('The route file <fg=blue>'.$routeFilePath.'</> does not exist. Please create it first.'); |
49 | 49 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | private function cleanContentArray(array $content) |
102 | 102 | { |
103 | - return array_filter(array_map(function ($line) { |
|
103 | + return array_filter(array_map(function($line) { |
|
104 | 104 | $lineText = trim($line); |
105 | 105 | if ($lineText === '' || |
106 | 106 | $lineText === '\n' || |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | */ |
134 | 134 | private function getLastLineNumberThatContains($needle, $haystack) |
135 | 135 | { |
136 | - $matchingLines = array_filter($haystack, function ($k) use ($needle) { |
|
136 | + $matchingLines = array_filter($haystack, function($k) use ($needle) { |
|
137 | 137 | return strpos($k, $needle) !== false; |
138 | 138 | }); |
139 | 139 |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | // we get the first column from database |
56 | 56 | // that is NOT indexed (usually primary, foreign keys) |
57 | 57 | foreach ($columnNames as $columnName) { |
58 | - if (! in_array($columnName, $indexes)) { |
|
58 | + if (!in_array($columnName, $indexes)) { |
|
59 | 59 | //check for convention "field<_id>" in case developer didn't add foreign key constraints. |
60 | 60 | if (strpos($columnName, '_id') !== false) { |
61 | 61 | continue; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | // in case everything fails we just return the first column in database |
69 | 69 | $firstColumnInTable = Arr::first($columnNames); |
70 | - if (! empty($firstColumnInTable)) { |
|
70 | + if (!empty($firstColumnInTable)) { |
|
71 | 71 | return $firstColumnInTable; |
72 | 72 | } |
73 | 73 |