@@ -23,14 +23,16 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function perform() |
25 | 25 | { |
26 | - if (!$this->verifyConfigured() || !$this->verifyEnvironment()) { |
|
26 | + if (!$this->verifyConfigured() || !$this->verifyEnvironment()) |
|
27 | + { |
|
27 | 28 | return; |
28 | 29 | } |
29 | 30 | |
30 | 31 | $found = false; |
31 | 32 | $count = $this->option('one') ? 1 : PHP_INT_MAX; |
32 | 33 | |
33 | - while ($count > 0 && ($migration = $this->migrator->run())) { |
|
34 | + while ($count > 0 && ($migration = $this->migrator->run())) |
|
35 | + { |
|
34 | 36 | $found = true; |
35 | 37 | $count--; |
36 | 38 | |
@@ -40,7 +42,8 @@ discard block |
||
40 | 42 | ); |
41 | 43 | } |
42 | 44 | |
43 | - if (!$found) { |
|
45 | + if (!$found) |
|
46 | + { |
|
44 | 47 | $this->writeln("<fg=red>No outstanding migrations were found.</fg=red>"); |
45 | 48 | } |
46 | 49 | } |
@@ -40,7 +40,8 @@ discard block |
||
40 | 40 | */ |
41 | 41 | protected function verifyConfigured(): bool |
42 | 42 | { |
43 | - if (!$this->migrator->isConfigured()) { |
|
43 | + if (!$this->migrator->isConfigured()) |
|
44 | + { |
|
44 | 45 | $this->writeln( |
45 | 46 | "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>" |
46 | 47 | ); |
@@ -58,14 +59,16 @@ discard block |
||
58 | 59 | */ |
59 | 60 | protected function verifyEnvironment(): bool |
60 | 61 | { |
61 | - if ($this->option('force') || $this->config->isSafe()) { |
|
62 | + if ($this->option('force') || $this->config->isSafe()) |
|
63 | + { |
|
62 | 64 | //Safe to run |
63 | 65 | return true; |
64 | 66 | } |
65 | 67 | |
66 | 68 | $this->writeln("<fg=red>Confirmation is required to run migrations!</fg=red>"); |
67 | 69 | |
68 | - if (!$this->askConfirmation()) { |
|
70 | + if (!$this->askConfirmation()) |
|
71 | + { |
|
69 | 72 | $this->writeln("<comment>Cancelling operation...</comment>"); |
70 | 73 | |
71 | 74 | return false; |
@@ -27,18 +27,21 @@ |
||
27 | 27 | */ |
28 | 28 | public function perform(FilesInterface $files) |
29 | 29 | { |
30 | - if (!$this->verifyConfigured()) { |
|
30 | + if (!$this->verifyConfigured()) |
|
31 | + { |
|
31 | 32 | return; |
32 | 33 | } |
33 | 34 | |
34 | - if (empty($this->migrator->getMigrations())) { |
|
35 | + if (empty($this->migrator->getMigrations())) |
|
36 | + { |
|
35 | 37 | $this->writeln("<comment>No migrations were found.</comment>"); |
36 | 38 | |
37 | 39 | return; |
38 | 40 | } |
39 | 41 | |
40 | 42 | $table = $this->table(['Migration', 'Filename', 'Created at', 'Executed at']); |
41 | - foreach ($this->migrator->getMigrations() as $migration) { |
|
43 | + foreach ($this->migrator->getMigrations() as $migration) |
|
44 | + { |
|
42 | 45 | $filename = (new \ReflectionClass($migration))->getFileName(); |
43 | 46 | |
44 | 47 | $state = $migration->getState(); |
@@ -23,14 +23,16 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function perform() |
25 | 25 | { |
26 | - if (!$this->verifyConfigured() || !$this->verifyEnvironment()) { |
|
26 | + if (!$this->verifyConfigured() || !$this->verifyEnvironment()) |
|
27 | + { |
|
27 | 28 | //Making sure we can safely migrate in this environment |
28 | 29 | return; |
29 | 30 | } |
30 | 31 | |
31 | 32 | $found = false; |
32 | 33 | $count = !$this->option('all') ? 1 : PHP_INT_MAX; |
33 | - while ($count > 0 && ($migration = $this->migrator->rollback())) { |
|
34 | + while ($count > 0 && ($migration = $this->migrator->rollback())) |
|
35 | + { |
|
34 | 36 | $found = true; |
35 | 37 | $count--; |
36 | 38 | $this->sprintf( |
@@ -39,7 +41,8 @@ discard block |
||
39 | 41 | ); |
40 | 42 | } |
41 | 43 | |
42 | - if (!$found) { |
|
44 | + if (!$found) |
|
45 | + { |
|
43 | 46 | $this->writeln("<fg=red>No executed migrations were found.</fg=red>"); |
44 | 47 | } |
45 | 48 | } |
@@ -41,7 +41,8 @@ discard block |
||
41 | 41 | $database = $dbal->database($this->option('database')); |
42 | 42 | $schema = $database->table($this->argument('table'))->getSchema(); |
43 | 43 | |
44 | - if (!$schema->exists()) { |
|
44 | + if (!$schema->exists()) |
|
45 | + { |
|
45 | 46 | throw new DBALException( |
46 | 47 | "Table {$database->getName()}.{$this->argument('table')} does not exists." |
47 | 48 | ); |
@@ -55,11 +56,13 @@ discard block |
||
55 | 56 | |
56 | 57 | $this->describeColumns($schema); |
57 | 58 | |
58 | - if (!empty($indexes = $schema->getIndexes())) { |
|
59 | + if (!empty($indexes = $schema->getIndexes())) |
|
60 | + { |
|
59 | 61 | $this->describeIndexes($database, $indexes); |
60 | 62 | } |
61 | 63 | |
62 | - if (!empty($foreignKeys = $schema->getForeignKeys())) { |
|
64 | + if (!empty($foreignKeys = $schema->getForeignKeys())) |
|
65 | + { |
|
63 | 66 | $this->describeForeignKeys($database, $foreignKeys); |
64 | 67 | } |
65 | 68 | |
@@ -79,34 +82,41 @@ discard block |
||
79 | 82 | 'Default Value:' |
80 | 83 | ]); |
81 | 84 | |
82 | - foreach ($schema->getColumns() as $column) { |
|
85 | + foreach ($schema->getColumns() as $column) |
|
86 | + { |
|
83 | 87 | $name = $column->getName(); |
84 | 88 | $type = $column->getType(); |
85 | 89 | |
86 | 90 | $abstractType = $column->getAbstractType(); |
87 | 91 | $defaultValue = $column->getDefaultValue(); |
88 | 92 | |
89 | - if ($column->getSize()) { |
|
93 | + if ($column->getSize()) |
|
94 | + { |
|
90 | 95 | $type .= " ({$column->getSize()})"; |
91 | 96 | } |
92 | 97 | |
93 | - if ($abstractType == 'decimal') { |
|
98 | + if ($abstractType == 'decimal') |
|
99 | + { |
|
94 | 100 | $type .= " ({$column->getPrecision()}, {$column->getScale()})"; |
95 | 101 | } |
96 | 102 | |
97 | - if (in_array($column->getName(), $schema->getPrimaryKeys())) { |
|
103 | + if (in_array($column->getName(), $schema->getPrimaryKeys())) |
|
104 | + { |
|
98 | 105 | $name = "<fg=magenta>{$name}</fg=magenta>"; |
99 | 106 | } |
100 | 107 | |
101 | - if (in_array($abstractType, ['primary', 'bigPrimary'])) { |
|
108 | + if (in_array($abstractType, ['primary', 'bigPrimary'])) |
|
109 | + { |
|
102 | 110 | $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>"; |
103 | 111 | } |
104 | 112 | |
105 | - if ($defaultValue instanceof FragmentInterface) { |
|
113 | + if ($defaultValue instanceof FragmentInterface) |
|
114 | + { |
|
106 | 115 | $defaultValue = "<info>{$defaultValue}</info>"; |
107 | 116 | } |
108 | 117 | |
109 | - if ($defaultValue instanceof \DateTimeInterface) { |
|
118 | + if ($defaultValue instanceof \DateTimeInterface) |
|
119 | + { |
|
110 | 120 | $defaultValue = $defaultValue->format('c'); |
111 | 121 | } |
112 | 122 | |
@@ -135,7 +145,8 @@ discard block |
||
135 | 145 | ); |
136 | 146 | |
137 | 147 | $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']); |
138 | - foreach ($indexes as $index) { |
|
148 | + foreach ($indexes as $index) |
|
149 | + { |
|
139 | 150 | $indexesTable->addRow([ |
140 | 151 | $index->getName(), |
141 | 152 | $index->isUnique() ? 'UNIQUE INDEX' : 'INDEX', |
@@ -166,7 +177,8 @@ discard block |
||
166 | 177 | 'On Update:' |
167 | 178 | ]); |
168 | 179 | |
169 | - foreach ($foreignKeys as $reference) { |
|
180 | + foreach ($foreignKeys as $reference) |
|
181 | + { |
|
170 | 182 | $foreignTable->addRow([ |
171 | 183 | $reference->getName(), |
172 | 184 | $reference->getColumn(), |
@@ -26,20 +26,26 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function perform(ViewsConfig $config, FilesInterface $files) |
28 | 28 | { |
29 | - if (!$files->exists($config->cacheDirectory())) { |
|
29 | + if (!$files->exists($config->cacheDirectory())) |
|
30 | + { |
|
30 | 31 | $this->writeln("Cache directory is missing, no cache to be cleaned."); |
31 | 32 | |
32 | 33 | return; |
33 | 34 | } |
34 | 35 | |
35 | - if ($this->isVerbose()) { |
|
36 | + if ($this->isVerbose()) |
|
37 | + { |
|
36 | 38 | $this->writeln("<info>Cleaning view cache:</info>"); |
37 | 39 | } |
38 | 40 | |
39 | - foreach ($files->getFiles($config->cacheDirectory()) as $filename) { |
|
40 | - try { |
|
41 | + foreach ($files->getFiles($config->cacheDirectory()) as $filename) |
|
42 | + { |
|
43 | + try |
|
44 | + { |
|
41 | 45 | $files->delete($filename); |
42 | - } catch (\Throwable $e) { |
|
46 | + } |
|
47 | + catch (\Throwable $e) |
|
48 | + { |
|
43 | 49 | $this->sprintf("<fg=red>[errored]</fg=red> `%s`: <fg=red>%s</fg=red>\n", |
44 | 50 | $files->relativePath($filename, $config->cacheDirectory()), |
45 | 51 | $e->getMessage() |
@@ -48,7 +54,8 @@ discard block |
||
48 | 54 | continue; |
49 | 55 | } |
50 | 56 | |
51 | - if ($this->isVerbose()) { |
|
57 | + if ($this->isVerbose()) |
|
58 | + { |
|
52 | 59 | $this->sprintf( |
53 | 60 | "<fg=green>[deleted]</fg=green> `%s`\n", |
54 | 61 | $files->relativePath($filename, $config->cacheDirectory()) |
@@ -44,17 +44,21 @@ discard block |
||
44 | 44 | string $mergeMode = self::FOLLOW, |
45 | 45 | int $mode = FilesInterface::READONLY |
46 | 46 | ) { |
47 | - if (!$this->files->isFile($filename)) { |
|
47 | + if (!$this->files->isFile($filename)) |
|
48 | + { |
|
48 | 49 | throw new PublishException("Given '{$filename}' is not valid file"); |
49 | 50 | } |
50 | 51 | |
51 | - if ($this->files->exists($destination)) { |
|
52 | - if ($this->files->md5($destination) == $this->files->md5($filename)) { |
|
52 | + if ($this->files->exists($destination)) |
|
53 | + { |
|
54 | + if ($this->files->md5($destination) == $this->files->md5($filename)) |
|
55 | + { |
|
53 | 56 | //Nothing to do |
54 | 57 | return; |
55 | 58 | } |
56 | 59 | |
57 | - if ($mergeMode == self::FOLLOW) { |
|
60 | + if ($mergeMode == self::FOLLOW) |
|
61 | + { |
|
58 | 62 | return; |
59 | 63 | } |
60 | 64 | } |
@@ -76,7 +80,8 @@ discard block |
||
76 | 80 | string $mergeMode = self::REPLACE, |
77 | 81 | int $mode = FilesInterface::READONLY |
78 | 82 | ) { |
79 | - if (!$this->files->isDirectory($directory)) { |
|
83 | + if (!$this->files->isDirectory($directory)) |
|
84 | + { |
|
80 | 85 | throw new PublishException("Given '{$directory}' is not valid directory"); |
81 | 86 | } |
82 | 87 | |
@@ -86,7 +91,8 @@ discard block |
||
86 | 91 | /** |
87 | 92 | * @var SplFileInfo $file |
88 | 93 | */ |
89 | - foreach ($finder->getIterator() as $file) { |
|
94 | + foreach ($finder->getIterator() as $file) |
|
95 | + { |
|
90 | 96 | $this->publish( |
91 | 97 | (string)$file, |
92 | 98 | $destination . '/' . $file->getRelativePathname(), |
@@ -43,7 +43,8 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function createPaginator(string $parameter, int $limit = 25): PaginatorInterface |
45 | 45 | { |
46 | - if (!$this->container->has(ServerRequestInterface::class)) { |
|
46 | + if (!$this->container->has(ServerRequestInterface::class)) |
|
47 | + { |
|
47 | 48 | throw new ScopeException("Unable to create paginator, no request scope found"); |
48 | 49 | } |
49 | 50 | /** |
@@ -53,7 +54,8 @@ discard block |
||
53 | 54 | |
54 | 55 | //Getting page number |
55 | 56 | $page = 0; |
56 | - if (!empty($query[$parameter]) && is_scalar($query[$parameter])) { |
|
57 | + if (!empty($query[$parameter]) && is_scalar($query[$parameter])) |
|
58 | + { |
|
57 | 59 | $page = (int)$query[$parameter]; |
58 | 60 | } |
59 | 61 |
@@ -68,7 +68,8 @@ |
||
68 | 68 | protected function fetchCookies(array $header) |
69 | 69 | { |
70 | 70 | $result = []; |
71 | - foreach ($header as $line) { |
|
71 | + foreach ($header as $line) |
|
72 | + { |
|
72 | 73 | $cookie = explode('=', $line); |
73 | 74 | $result[$cookie[0]] = rawurldecode(substr($cookie[1], 0, strpos($cookie[1], ';'))); |
74 | 75 | } |