We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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->hasColumn($columnName)) { |
|
69 | + if (!$this->hasColumn($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->hasColumn($columnName)) { |
|
86 | + if (!$this->hasColumn($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->hasColumn($columnName)) { |
|
103 | + if (!$this->hasColumn($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 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | private function schemaExists() |
132 | 132 | { |
133 | - if (! empty($this->schema)) { |
|
133 | + if (!empty($this->schema)) { |
|
134 | 134 | return true; |
135 | 135 | } |
136 | 136 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | { |
27 | 27 | $connection = $connection ?: config('database.default'); |
28 | 28 | |
29 | - self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function ($table, $key) use ($connection) { |
|
29 | + self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function($table, $key) use ($connection) { |
|
30 | 30 | $tableName = is_array($table) ? $table['name'] : $table->getName(); |
31 | 31 | |
32 | 32 | if ($existingTable = self::$schema[$connection][$tableName] ?? false) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | private static function generateDatabaseSchema(string $connection, string $table) |
67 | 67 | { |
68 | - if (! isset(self::$schema[$connection][$table])) { |
|
68 | + if (!isset(self::$schema[$connection][$table])) { |
|
69 | 69 | self::$schema[$connection][$table] = self::mapTable($connection, $table); |
70 | 70 | } |
71 | 71 | } |
@@ -74,20 +74,19 @@ discard block |
||
74 | 74 | { |
75 | 75 | try { |
76 | 76 | $table = method_exists(self::getCreateSchema($connection), 'getTable') ? |
77 | - self::getCreateSchema($connection)->getTable($tableName) : |
|
78 | - self::getCreateSchema($connection)->getColumns($tableName); |
|
77 | + self::getCreateSchema($connection)->getTable($tableName) : self::getCreateSchema($connection)->getColumns($tableName); |
|
79 | 78 | } catch (\Exception $e) { |
80 | 79 | return new Table($tableName, []); |
81 | 80 | } |
82 | 81 | |
83 | - if (! is_array($table) || empty($table)) { |
|
82 | + if (!is_array($table) || empty($table)) { |
|
84 | 83 | return $table; |
85 | 84 | } |
86 | 85 | |
87 | 86 | $schemaManager = self::getSchemaManager($connection); |
88 | 87 | $indexes = $schemaManager->getIndexes($tableName); |
89 | 88 | |
90 | - $indexes = array_map(function ($index) { |
|
89 | + $indexes = array_map(function($index) { |
|
91 | 90 | return $index['columns']; |
92 | 91 | }, $indexes); |
93 | 92 | |
@@ -105,7 +104,7 @@ discard block |
||
105 | 104 | |
106 | 105 | $indexes = self::$schema[$connection][$table]->getIndexes(); |
107 | 106 | |
108 | - $indexes = \Illuminate\Support\Arr::flatten(array_map(function ($index) { |
|
107 | + $indexes = \Illuminate\Support\Arr::flatten(array_map(function($index) { |
|
109 | 108 | return is_string($index) ? $index : $index->getColumns(); |
110 | 109 | }, $indexes)); |
111 | 110 |