We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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() |
@@ -41,7 +41,7 @@ |
||
41 | 41 | { |
42 | 42 | $this->crud->allowAccess('list'); |
43 | 43 | |
44 | - $this->crud->operation('list', function () { |
|
44 | + $this->crud->operation('list', function() { |
|
45 | 45 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
46 | 46 | }); |
47 | 47 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | $this->middleware("guest:$guard"); |
48 | 48 | |
49 | - if (! backpack_users_have_email()) { |
|
49 | + if (!backpack_users_have_email()) { |
|
50 | 50 | abort(501, trans('backpack::base.no_email_column')); |
51 | 51 | } |
52 | 52 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | // will update the password on an actual user model and persist it to the |
91 | 91 | // database. Otherwise we will parse the error and return the response. |
92 | 92 | $response = $this->broker()->reset( |
93 | - $this->credentials($request), function ($user, $password) { |
|
93 | + $this->credentials($request), function($user, $password) { |
|
94 | 94 | $this->resetPassword($user, $password); |
95 | 95 | } |
96 | 96 | ); |