@@ -9,4 +9,4 @@ |
||
9 | 9 | ini_set('display_errors', true); |
10 | 10 | |
11 | 11 | //Composer |
12 | -require dirname(__DIR__) . '/vendor/autoload.php'; |
|
13 | 12 | \ No newline at end of file |
13 | +require dirname(__DIR__).'/vendor/autoload.php'; |
|
14 | 14 | \ No newline at end of file |
@@ -23,14 +23,14 @@ 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 | return; |
28 | 28 | } |
29 | 29 | |
30 | 30 | $found = false; |
31 | 31 | $count = $this->option('one') ? 1 : PHP_INT_MAX; |
32 | 32 | |
33 | - while ($count > 0 && ($migration = $this->migrator->run())) { |
|
33 | + while ($count > 0 && ($migration = $this->migrator->run())){ |
|
34 | 34 | $found = true; |
35 | 35 | $count--; |
36 | 36 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | ); |
41 | 41 | } |
42 | 42 | |
43 | - if (!$found) { |
|
43 | + if (!$found){ |
|
44 | 44 | $this->writeln("<fg=red>No outstanding migrations were found.</fg=red>"); |
45 | 45 | } |
46 | 46 | } |
@@ -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,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | protected function verifyConfigured(): bool |
42 | 42 | { |
43 | - if (!$this->migrator->isConfigured()) { |
|
43 | + if (!$this->migrator->isConfigured()){ |
|
44 | 44 | $this->writeln( |
45 | 45 | "<fg=red>Migrations are not configured yet, run '<info>migrate:init</info>' first.</fg=red>" |
46 | 46 | ); |
@@ -58,14 +58,14 @@ discard block |
||
58 | 58 | */ |
59 | 59 | protected function verifyEnvironment(): bool |
60 | 60 | { |
61 | - if ($this->option('force') || $this->config->isSafe()) { |
|
61 | + if ($this->option('force') || $this->config->isSafe()){ |
|
62 | 62 | //Safe to run |
63 | 63 | return true; |
64 | 64 | } |
65 | 65 | |
66 | 66 | $this->writeln("<fg=red>Confirmation is required to run migrations!</fg=red>"); |
67 | 67 | |
68 | - if (!$this->askConfirmation()) { |
|
68 | + if (!$this->askConfirmation()){ |
|
69 | 69 | $this->writeln("<comment>Cancelling operation...</comment>"); |
70 | 70 | |
71 | 71 | return false; |
@@ -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,18 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function perform(FilesInterface $files) |
29 | 29 | { |
30 | - if (!$this->verifyConfigured()) { |
|
30 | + if (!$this->verifyConfigured()){ |
|
31 | 31 | return; |
32 | 32 | } |
33 | 33 | |
34 | - if (empty($this->migrator->getMigrations())) { |
|
34 | + if (empty($this->migrator->getMigrations())){ |
|
35 | 35 | $this->writeln("<comment>No migrations were found.</comment>"); |
36 | 36 | |
37 | 37 | return; |
38 | 38 | } |
39 | 39 | |
40 | 40 | $table = $this->table(['Migration', 'Filename', 'Created at', 'Executed at']); |
41 | - foreach ($this->migrator->getMigrations() as $migration) { |
|
41 | + foreach ($this->migrator->getMigrations() as $migration){ |
|
42 | 42 | $filename = (new \ReflectionClass($migration))->getFileName(); |
43 | 43 | |
44 | 44 | $state = $migration->getState(); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $state->getTimeCreated()->format('Y-m-d H:i:s'), |
52 | 52 | $state->getStatus() == State::STATUS_PENDING |
53 | 53 | ? self::PENDING |
54 | - : '<info>' . $state->getTimeExecuted()->format('Y-m-d H:i:s') . '</info>' |
|
54 | + : '<info>'.$state->getTimeExecuted()->format('Y-m-d H:i:s').'</info>' |
|
55 | 55 | ]); |
56 | 56 | } |
57 | 57 |
@@ -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,14 @@ 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 | //Making sure we can safely migrate in this environment |
28 | 28 | return; |
29 | 29 | } |
30 | 30 | |
31 | 31 | $found = false; |
32 | 32 | $count = !$this->option('all') ? 1 : PHP_INT_MAX; |
33 | - while ($count > 0 && ($migration = $this->migrator->rollback())) { |
|
33 | + while ($count > 0 && ($migration = $this->migrator->rollback())){ |
|
34 | 34 | $found = true; |
35 | 35 | $count--; |
36 | 36 | $this->sprintf( |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ); |
40 | 40 | } |
41 | 41 | |
42 | - if (!$found) { |
|
42 | + if (!$found){ |
|
43 | 43 | $this->writeln("<fg=red>No executed migrations were found.</fg=red>"); |
44 | 44 | } |
45 | 45 | } |
@@ -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,7 @@ 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 | throw new DBALException( |
46 | 46 | "Table {$database->getName()}.{$this->argument('table')} does not exists." |
47 | 47 | ); |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | |
56 | 56 | $this->describeColumns($schema); |
57 | 57 | |
58 | - if (!empty($indexes = $schema->getIndexes())) { |
|
58 | + if (!empty($indexes = $schema->getIndexes())){ |
|
59 | 59 | $this->describeIndexes($database, $indexes); |
60 | 60 | } |
61 | 61 | |
62 | - if (!empty($foreignKeys = $schema->getForeignKeys())) { |
|
62 | + if (!empty($foreignKeys = $schema->getForeignKeys())){ |
|
63 | 63 | $this->describeForeignKeys($database, $foreignKeys); |
64 | 64 | } |
65 | 65 | |
@@ -79,34 +79,34 @@ discard block |
||
79 | 79 | 'Default Value:' |
80 | 80 | ]); |
81 | 81 | |
82 | - foreach ($schema->getColumns() as $column) { |
|
82 | + foreach ($schema->getColumns() as $column){ |
|
83 | 83 | $name = $column->getName(); |
84 | 84 | $type = $column->getType(); |
85 | 85 | |
86 | 86 | $abstractType = $column->getAbstractType(); |
87 | 87 | $defaultValue = $column->getDefaultValue(); |
88 | 88 | |
89 | - if ($column->getSize()) { |
|
89 | + if ($column->getSize()){ |
|
90 | 90 | $type .= " ({$column->getSize()})"; |
91 | 91 | } |
92 | 92 | |
93 | - if ($abstractType == 'decimal') { |
|
93 | + if ($abstractType == 'decimal'){ |
|
94 | 94 | $type .= " ({$column->getPrecision()}, {$column->getScale()})"; |
95 | 95 | } |
96 | 96 | |
97 | - if (in_array($column->getName(), $schema->getPrimaryKeys())) { |
|
97 | + if (in_array($column->getName(), $schema->getPrimaryKeys())){ |
|
98 | 98 | $name = "<fg=magenta>{$name}</fg=magenta>"; |
99 | 99 | } |
100 | 100 | |
101 | - if (in_array($abstractType, ['primary', 'bigPrimary'])) { |
|
101 | + if (in_array($abstractType, ['primary', 'bigPrimary'])){ |
|
102 | 102 | $abstractType = "<fg=magenta>{$abstractType}</fg=magenta>"; |
103 | 103 | } |
104 | 104 | |
105 | - if ($defaultValue instanceof FragmentInterface) { |
|
105 | + if ($defaultValue instanceof FragmentInterface){ |
|
106 | 106 | $defaultValue = "<info>{$defaultValue}</info>"; |
107 | 107 | } |
108 | 108 | |
109 | - if ($defaultValue instanceof \DateTimeInterface) { |
|
109 | + if ($defaultValue instanceof \DateTimeInterface){ |
|
110 | 110 | $defaultValue = $defaultValue->format('c'); |
111 | 111 | } |
112 | 112 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | ); |
136 | 136 | |
137 | 137 | $indexesTable = $this->table(['Name:', 'Type:', 'Columns:']); |
138 | - foreach ($indexes as $index) { |
|
138 | + foreach ($indexes as $index){ |
|
139 | 139 | $indexesTable->addRow([ |
140 | 140 | $index->getName(), |
141 | 141 | $index->isUnique() ? 'UNIQUE INDEX' : 'INDEX', |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | 'On Update:' |
167 | 167 | ]); |
168 | 168 | |
169 | - foreach ($foreignKeys as $reference) { |
|
169 | + foreach ($foreignKeys as $reference){ |
|
170 | 170 | $foreignTable->addRow([ |
171 | 171 | $reference->getName(), |
172 | 172 | $reference->getColumn(), |
@@ -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(), |
@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | if (!$schema->exists()) { |
45 | 45 | throw new DBALException( |
46 | - "Table {$database->getName()}.{$this->argument('table')} does not exists." |
|
46 | + "table {$database->getName()}.{$this->argument('table')} does not exists." |
|
47 | 47 | ); |
48 | 48 | } |
49 | 49 |
@@ -26,20 +26,20 @@ 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 | $this->writeln("Cache directory is missing, no cache to be cleaned."); |
31 | 31 | |
32 | 32 | return; |
33 | 33 | } |
34 | 34 | |
35 | - if ($this->isVerbose()) { |
|
35 | + if ($this->isVerbose()){ |
|
36 | 36 | $this->writeln("<info>Cleaning view cache:</info>"); |
37 | 37 | } |
38 | 38 | |
39 | - foreach ($files->getFiles($config->cacheDirectory()) as $filename) { |
|
40 | - try { |
|
39 | + foreach ($files->getFiles($config->cacheDirectory()) as $filename){ |
|
40 | + try{ |
|
41 | 41 | $files->delete($filename); |
42 | - } catch (\Throwable $e) { |
|
42 | + }catch (\Throwable $e){ |
|
43 | 43 | $this->sprintf("<fg=red>[errored]</fg=red> `%s`: <fg=red>%s</fg=red>\n", |
44 | 44 | $files->relativePath($filename, $config->cacheDirectory()), |
45 | 45 | $e->getMessage() |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | continue; |
49 | 49 | } |
50 | 50 | |
51 | - if ($this->isVerbose()) { |
|
51 | + if ($this->isVerbose()){ |
|
52 | 52 | $this->sprintf( |
53 | 53 | "<fg=green>[deleted]</fg=green> `%s`\n", |
54 | 54 | $files->relativePath($filename, $config->cacheDirectory()) |
@@ -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()) |
@@ -43,18 +43,18 @@ discard block |
||
43 | 43 | string $destination, |
44 | 44 | string $mergeMode = self::FOLLOW, |
45 | 45 | int $mode = FilesInterface::READONLY |
46 | - ) { |
|
47 | - if (!$this->files->isFile($filename)) { |
|
46 | + ){ |
|
47 | + if (!$this->files->isFile($filename)){ |
|
48 | 48 | throw new PublishException("Given '{$filename}' is not valid file"); |
49 | 49 | } |
50 | 50 | |
51 | - if ($this->files->exists($destination)) { |
|
52 | - if ($this->files->md5($destination) == $this->files->md5($filename)) { |
|
51 | + if ($this->files->exists($destination)){ |
|
52 | + if ($this->files->md5($destination) == $this->files->md5($filename)){ |
|
53 | 53 | //Nothing to do |
54 | 54 | return; |
55 | 55 | } |
56 | 56 | |
57 | - if ($mergeMode == self::FOLLOW) { |
|
57 | + if ($mergeMode == self::FOLLOW){ |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 | } |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | string $destination, |
76 | 76 | string $mergeMode = self::REPLACE, |
77 | 77 | int $mode = FilesInterface::READONLY |
78 | - ) { |
|
79 | - if (!$this->files->isDirectory($directory)) { |
|
78 | + ){ |
|
79 | + if (!$this->files->isDirectory($directory)){ |
|
80 | 80 | throw new PublishException("Given '{$directory}' is not valid directory"); |
81 | 81 | } |
82 | 82 | |
@@ -86,10 +86,10 @@ discard block |
||
86 | 86 | /** |
87 | 87 | * @var SplFileInfo $file |
88 | 88 | */ |
89 | - foreach ($finder->getIterator() as $file) { |
|
89 | + foreach ($finder->getIterator() as $file){ |
|
90 | 90 | $this->publish( |
91 | 91 | (string)$file, |
92 | - $destination . '/' . $file->getRelativePathname(), |
|
92 | + $destination.'/'.$file->getRelativePathname(), |
|
93 | 93 | $mergeMode, |
94 | 94 | $mode |
95 | 95 | ); |
@@ -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,7 @@ 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 | throw new ScopeException("Unable to create paginator, no request scope found"); |
48 | 48 | } |
49 | 49 | /** |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | //Getting page number |
55 | 55 | $page = 0; |
56 | - if (!empty($query[$parameter]) && is_scalar($query[$parameter])) { |
|
56 | + if (!empty($query[$parameter]) && is_scalar($query[$parameter])){ |
|
57 | 57 | $page = (int)$query[$parameter]; |
58 | 58 | } |
59 | 59 |
@@ -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 |