We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | if (array_key_exists($subfieldName, $requestInput) && $isSubfieldFake) { |
50 | 50 | $this->addCompactedField($requestInput, $subfieldName, $subFakeFieldKey); |
51 | 51 | |
52 | - if (! in_array($subFakeFieldKey, $compactedFakeFields)) { |
|
52 | + if (!in_array($subFakeFieldKey, $compactedFakeFields)) { |
|
53 | 53 | $compactedFakeFields[] = $subFakeFieldKey; |
54 | 54 | } |
55 | 55 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | if (array_key_exists($fieldName, $requestInput) && $isFakeField) { |
62 | 62 | $this->addCompactedField($requestInput, $fieldName, $fakeFieldKey); |
63 | 63 | |
64 | - if (! in_array($fakeFieldKey, $compactedFakeFields)) { |
|
64 | + if (!in_array($fakeFieldKey, $compactedFakeFields)) { |
|
65 | 65 | $compactedFakeFields[] = $fakeFieldKey; |
66 | 66 | } |
67 | 67 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | // json_encode all fake_value columns if applicable in the database, so they can be properly stored and interpreted |
72 | 72 | foreach ($compactedFakeFields as $value) { |
73 | - if (! (property_exists($model, 'translatable') && in_array($value, $model->getTranslatableAttributes(), true)) && $model->shouldEncodeFake($value)) { |
|
73 | + if (!(property_exists($model, 'translatable') && in_array($value, $model->getTranslatableAttributes(), true)) && $model->shouldEncodeFake($value)) { |
|
74 | 74 | $requestInput[$value] = json_encode($requestInput[$value]); |
75 | 75 | } |
76 | 76 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | //remove fields that are not in the submitted form input |
101 | - $relationFields = array_filter($relationFields, function ($field) use ($input) { |
|
101 | + $relationFields = array_filter($relationFields, function($field) use ($input) { |
|
102 | 102 | return Arr::has($input, $field['name']) || isset($input[$field['name']]) || Arr::has($input, Str::afterLast($field['name'], '.')); |
103 | 103 | }); |
104 | 104 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | // when using dot notation if relationMethod is not set we are sure we want to exclude those relations. |
179 | 179 | if ($this->getOnlyRelationEntity($field) !== $field['entity']) { |
180 | - if (! $relationMethod) { |
|
180 | + if (!$relationMethod) { |
|
181 | 181 | $excludedFields[] = $nameToExclude; |
182 | 182 | } |
183 | 183 | |
@@ -191,8 +191,8 @@ discard block |
||
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
194 | - return Arr::where($input, function ($item, $key) use ($excludedFields) { |
|
195 | - return ! in_array($key, $excludedFields); |
|
194 | + return Arr::where($input, function($item, $key) use ($excludedFields) { |
|
195 | + return !in_array($key, $excludedFields); |
|
196 | 196 | }); |
197 | 197 | } |
198 | 198 | } |
@@ -32,12 +32,12 @@ discard block |
||
32 | 32 | */ |
33 | 33 | private static function generateDatabaseSchema(string $connection, string $table) |
34 | 34 | { |
35 | - if (! isset(self::$schema[$connection])) { |
|
35 | + if (!isset(self::$schema[$connection])) { |
|
36 | 36 | $rawTables = DB::connection($connection)->getDoctrineSchemaManager()->createSchema(); |
37 | 37 | self::$schema[$connection] = self::mapTables($rawTables); |
38 | 38 | } else { |
39 | 39 | // check for a specific table in case it was created after schema had been generated. |
40 | - if (! isset(self::$schema[$connection][$table])) { |
|
40 | + if (!isset(self::$schema[$connection][$table])) { |
|
41 | 41 | self::$schema[$connection][$table] = DB::connection($connection)->getDoctrineSchemaManager()->listTableDetails($table); |
42 | 42 | } |
43 | 43 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | private static function mapTables($rawTables) |
53 | 53 | { |
54 | - return LazyCollection::make($rawTables->getTables())->mapWithKeys(function ($table, $key) { |
|
54 | + return LazyCollection::make($rawTables->getTables())->mapWithKeys(function($table, $key) { |
|
55 | 55 | return [$table->getName() => $table]; |
56 | 56 | })->toArray(); |
57 | 57 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function getColumnsNames() |
21 | 21 | { |
22 | 22 | return array_values( |
23 | - array_map(function ($item) { |
|
23 | + array_map(function($item) { |
|
24 | 24 | return $item->getName(); |
25 | 25 | }, $this->getColumns()) |
26 | 26 | ); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function getColumnType(string $columnName) |
36 | 36 | { |
37 | - if (! $this->schemaExists() || ! $this->schema->hasColumn($columnName)) { |
|
37 | + if (!$this->schemaExists() || !$this->schema->hasColumn($columnName)) { |
|
38 | 38 | return 'varchar'; |
39 | 39 | } |
40 | 40 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function hasColumn($columnName) |
53 | 53 | { |
54 | - if (! $this->schemaExists()) { |
|
54 | + if (!$this->schemaExists()) { |
|
55 | 55 | return false; |
56 | 56 | } |
57 | 57 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function columnIsNullable($columnName) |
68 | 68 | { |
69 | - if (! $this->columnExists($columnName)) { |
|
69 | + if (!$this->columnExists($columnName)) { |
|
70 | 70 | return true; |
71 | 71 | } |
72 | 72 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function columnHasDefault($columnName) |
85 | 85 | { |
86 | - if (! $this->columnExists($columnName)) { |
|
86 | + if (!$this->columnExists($columnName)) { |
|
87 | 87 | return false; |
88 | 88 | } |
89 | 89 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function getColumnDefault($columnName) |
102 | 102 | { |
103 | - if (! $this->columnExists($columnName)) { |
|
103 | + if (!$this->columnExists($columnName)) { |
|
104 | 104 | return false; |
105 | 105 | } |
106 | 106 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | public function getColumns() |
118 | 118 | { |
119 | - if (! $this->schemaExists()) { |
|
119 | + if (!$this->schemaExists()) { |
|
120 | 120 | return []; |
121 | 121 | } |
122 | 122 | |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | private function columnExists($columnName) |
133 | 133 | { |
134 | - if (! $this->schemaExists()) { |
|
134 | + if (!$this->schemaExists()) { |
|
135 | 135 | return false; |
136 | 136 | } |
137 | 137 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | private function schemaExists() |
147 | 147 | { |
148 | - if (! empty($this->schema)) { |
|
148 | + if (!empty($this->schema)) { |
|
149 | 149 | return true; |
150 | 150 | } |
151 | 151 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Exceptions\BackpackProRequiredException; |
6 | 6 | |
7 | -if (! backpack_pro()) { |
|
7 | +if (!backpack_pro()) { |
|
8 | 8 | trait BulkDeleteOperation |
9 | 9 | { |
10 | 10 | public function setupBulkDeleteOperationDefaults() |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Exceptions\BackpackProRequiredException; |
6 | 6 | |
7 | -if (! backpack_pro()) { |
|
7 | +if (!backpack_pro()) { |
|
8 | 8 | trait InlineCreateOperation |
9 | 9 | { |
10 | 10 | public function setupInlineCreateOperationDefaults() |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Exceptions\BackpackProRequiredException; |
6 | 6 | |
7 | -if (! backpack_pro()) { |
|
7 | +if (!backpack_pro()) { |
|
8 | 8 | trait FetchOperation |
9 | 9 | { |
10 | 10 | public function setupFetchOperationDefaults() |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Exceptions\BackpackProRequiredException; |
6 | 6 | |
7 | -if (! backpack_pro()) { |
|
7 | +if (!backpack_pro()) { |
|
8 | 8 | trait BulkCloneOperation |
9 | 9 | { |
10 | 10 | public function setupBulkCloneOperationDefaults() |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Backpack\CRUD\app\Exceptions\BackpackProRequiredException; |
6 | 6 | |
7 | -if (! backpack_pro()) { |
|
7 | +if (!backpack_pro()) { |
|
8 | 8 | trait CloneOperation |
9 | 9 | { |
10 | 10 | public function setupCloneOperationDefaults() |