@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\Providers; |
12 | 12 |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\Providers; |
12 | 12 |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * For the full copyright and license information, please view the LICENSE |
6 | 6 | * file that was distributed with this source code. |
7 | 7 | */ |
8 | -declare(strict_types=1); |
|
8 | +declare(strict_types = 1); |
|
9 | 9 | |
10 | 10 | namespace App\Console\Commands; |
11 | 11 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if (count($files) === 0) { |
58 | 58 | $this->info('Skipping: Documentation are actual.'); |
59 | 59 | } else { |
60 | - $this->info('Found ' . count($files) . ' new pages.'); |
|
60 | + $this->info('Found '.count($files).' new pages.'); |
|
61 | 61 | $this->info('Start sync progress...'); |
62 | 62 | |
63 | 63 | $this->output->progressStart(count($files)); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | return $manager->findFiles(...$config->values()) |
103 | 103 | // Remove not updated docs |
104 | - ->reject(function (DocsStatus $status) use ($exists, $isForce) { |
|
104 | + ->reject(function(DocsStatus $status) use ($exists, $isForce) { |
|
105 | 105 | if ($isForce) { |
106 | 106 | return false; |
107 | 107 | } |
@@ -132,11 +132,11 @@ discard block |
||
132 | 132 | $docs->content_source = $page->getContent(); |
133 | 133 | $docs->github_hash = $status->getHash(); |
134 | 134 | |
135 | - if (! $docs->category_id) { |
|
135 | + if (!$docs->category_id) { |
|
136 | 136 | $docs->category_id = 0; // TODO |
137 | 137 | } |
138 | 138 | |
139 | - if (! $docs->title) { |
|
139 | + if (!$docs->title) { |
|
140 | 140 | $docs->title = Str::ucfirst(str_replace( |
141 | 141 | ['-', '_'], |
142 | 142 | ' ', |