Passed
Push — master ( b5279a...15327a )
by Anton
02:22
created
src/Command/Database/TableCommand.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $database = $dbal->database($this->option('database'));
44 44
         $schema = $database->table($this->argument('table'))->getSchema();
45 45
 
46
-        if (!$schema->exists()) {
46
+        if (!$schema->exists()){
47 47
             throw new DBALException(
48 48
                 "Table {$database->getName()}.{$this->argument('table')} does not exists."
49 49
             );
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
 
58 58
         $this->describeColumns($schema);
59 59
 
60
-        if (!empty($indexes = $schema->getIndexes())) {
60
+        if (!empty($indexes = $schema->getIndexes())){
61 61
             $this->describeIndexes($database, $indexes);
62 62
         }
63 63
 
64
-        if (!empty($foreignKeys = $schema->getForeignKeys())) {
64
+        if (!empty($foreignKeys = $schema->getForeignKeys())){
65 65
             $this->describeForeignKeys($database, $foreignKeys);
66 66
         }
67 67
 
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
             'Default Value:'
82 82
         ]);
83 83
 
84
-        foreach ($schema->getColumns() as $column) {
84
+        foreach ($schema->getColumns() as $column){
85 85
             $name = $column->getName();
86 86
 
87
-            if (in_array($column->getName(), $schema->getPrimaryKeys())) {
87
+            if (in_array($column->getName(), $schema->getPrimaryKeys())){
88 88
                 $name = "<fg=magenta>{$name}</fg=magenta>";
89 89
             }
90 90
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         );
114 114
 
115 115
         $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']);
116
-        foreach ($indexes as $index) {
116
+        foreach ($indexes as $index){
117 117
             $indexesTable->addRow([
118 118
                 $index->getName(),
119 119
                 $index->isUnique() ? 'UNIQUE INDEX' : 'INDEX',
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             'On Update:'
145 145
         ]);
146 146
 
147
-        foreach ($foreignKeys as $reference) {
147
+        foreach ($foreignKeys as $reference){
148 148
             $foreignTable->addRow([
149 149
                 $reference->getName(),
150 150
                 join(', ', $reference->getColumns()),
@@ -168,11 +168,11 @@  discard block
 block discarded – undo
168 168
 
169 169
         $abstractType = $column->getAbstractType();
170 170
 
171
-        if ($column->getSize()) {
171
+        if ($column->getSize()){
172 172
             $type .= " ({$column->getSize()})";
173 173
         }
174 174
 
175
-        if ($abstractType == 'decimal') {
175
+        if ($abstractType == 'decimal'){
176 176
             $type .= " ({$column->getPrecision()}, {$column->getScale()})";
177 177
         }
178 178
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     {
188 188
         $abstractType = $column->getAbstractType();
189 189
 
190
-        if (in_array($abstractType, ['primary', 'bigPrimary'])) {
190
+        if (in_array($abstractType, ['primary', 'bigPrimary'])){
191 191
             $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>";
192 192
         }
193 193
 
@@ -202,11 +202,11 @@  discard block
 block discarded – undo
202 202
     {
203 203
         $defaultValue = $column->getDefaultValue();
204 204
 
205
-        if ($defaultValue instanceof FragmentInterface) {
205
+        if ($defaultValue instanceof FragmentInterface){
206 206
             $defaultValue = "<info>{$defaultValue}</info>";
207 207
         }
208 208
 
209
-        if ($defaultValue instanceof \DateTimeInterface) {
209
+        if ($defaultValue instanceof \DateTimeInterface){
210 210
             $defaultValue = $defaultValue->format('c');
211 211
         }
212 212
 
Please login to merge, or discard this patch.