@@ -5,7 +5,7 @@ |
||
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\Models\DocsPage; |
11 | 11 |
@@ -10,7 +10,6 @@ |
||
10 | 10 | namespace App\Models\DocsPage; |
11 | 11 | |
12 | 12 | use App\Models\DocsPage; |
13 | - |
|
14 | 13 | use Service\ContentRenderer\Anchors\Parser; |
15 | 14 | use Service\ContentRenderer\RenderersRepository; |
16 | 15 | use Service\ContentRenderer\Anchors\ProcessedBody; |
@@ -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 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $config = $importer->config($repo->importer_config); |
56 | 56 | |
57 | 57 | foreach ($importer->files($config) as $file) { |
58 | - $prefix = '[' . $repo->title . ']::' . $file->getRoute(); |
|
58 | + $prefix = '['.$repo->title.']::'.$file->getRoute(); |
|
59 | 59 | |
60 | 60 | /* |
61 | 61 | |-------------------------------------------------------------------------- |
@@ -64,8 +64,8 @@ discard block |
||
64 | 64 | */ |
65 | 65 | $updateRequired = $repo->pages->where('hash', $file->getHash())->isEmpty(); |
66 | 66 | |
67 | - if (! $updateRequired) { |
|
68 | - $this->comment($prefix . ' has no available updates.'); |
|
67 | + if (!$updateRequired) { |
|
68 | + $this->comment($prefix.' has no available updates.'); |
|
69 | 69 | continue; |
70 | 70 | } |
71 | 71 | |
@@ -76,10 +76,10 @@ discard block |
||
76 | 76 | */ |
77 | 77 | $page = $repo->pages->where('identify', $file->getId())->first(); |
78 | 78 | |
79 | - $message = $prefix . ' found. Updating sources...'; |
|
79 | + $message = $prefix.' found. Updating sources...'; |
|
80 | 80 | |
81 | 81 | if ($page === null) { |
82 | - $message = $prefix . ' not exists. Uploading new...'; |
|
82 | + $message = $prefix.' not exists. Uploading new...'; |
|
83 | 83 | $page = new DocsPage(['identify' => $file->getId()]); |
84 | 84 | } |
85 | 85 |
@@ -6,7 +6,7 @@ discard block |
||
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\Jobs; |
12 | 12 | |
@@ -56,14 +56,14 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function handle(ImageManager $manager, Storage $fs, LoggerInterface $logger): void |
58 | 58 | { |
59 | - $fulfilled = function (string $path) use ($logger) { |
|
59 | + $fulfilled = function(string $path) use ($logger) { |
|
60 | 60 | $this->user->avatar = $path; |
61 | 61 | $this->user->save(); |
62 | 62 | |
63 | - $logger->info('Queue: Update avatar for user ' . $this->user->name); |
|
63 | + $logger->info('Queue: Update avatar for user '.$this->user->name); |
|
64 | 64 | }; |
65 | 65 | |
66 | - $rejected = function (\Throwable $error) use ($logger) { |
|
66 | + $rejected = function(\Throwable $error) use ($logger) { |
|
67 | 67 | $logger->error($error); |
68 | 68 | }; |
69 | 69 | |
@@ -79,6 +79,6 @@ discard block |
||
79 | 79 | */ |
80 | 80 | public static function avatarPathname(): string |
81 | 81 | { |
82 | - return resource_path('images/avatars/' . random_int(1, 4)); |
|
82 | + return resource_path('images/avatars/'.random_int(1, 4)); |
|
83 | 83 | } |
84 | 84 | } |