Completed
Push — 2.0 ( 743031...2c291e )
by Kirill
02:53
created
server/app/Console/Commands/AbstractCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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\Console\Commands;
12 12
 
Please login to merge, or discard this patch.
server/app/Console/Commands/IdeHelperRun.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
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\Console\Commands;
12 12
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function handle(): void
40 40
     {
41
-        if (! $this->laravel->getProvider(IdeHelperServiceProvider::class)) {
41
+        if (!$this->laravel->getProvider(IdeHelperServiceProvider::class)) {
42 42
             $env = $this->laravel->environment();
43 43
             $this->info(sprintf('Skipped. IdeHelper not registered for %s environment.', $env));
44 44
 
Please login to merge, or discard this patch.
server/app/Console/Commands/GitHubDocsSync.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
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
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             $config = $importer->config($repo->importer_config);
57 57
 
58 58
             foreach ($importer->files($config) as $file) {
59
-                $prefix = '[' . $repo->title . ']::' . $file->getRoute();
59
+                $prefix = '['.$repo->title.']::'.$file->getRoute();
60 60
 
61 61
                 /*
62 62
                 |--------------------------------------------------------------------------
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
                 */
66 66
                 $updateRequired = $repo->pages->where('hash', $file->getHash())->isEmpty();
67 67
 
68
-                if (! $updateRequired) {
69
-                    $this->comment($prefix . ' has no available updates.');
68
+                if (!$updateRequired) {
69
+                    $this->comment($prefix.' has no available updates.');
70 70
 
71
-                    if (! $isForce) {
71
+                    if (!$isForce) {
72 72
                         continue;
73 73
                     } else {
74
-                        $this->comment($prefix . ' will force update.');
74
+                        $this->comment($prefix.' will force update.');
75 75
                     }
76 76
                 }
77 77
 
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
                 */
83 83
                 $page = $repo->pages->where('identify', $file->getId())->first();
84 84
 
85
-                $message = $prefix . ' found. Updating sources...';
85
+                $message = $prefix.' found. Updating sources...';
86 86
 
87 87
                 if ($page === null) {
88
-                    $message = $prefix . ' not exists. Uploading new...';
88
+                    $message = $prefix.' not exists. Uploading new...';
89 89
                     $page = new DocsPage(['identify' => $file->getId()]);
90 90
                 }
91 91
 
Please login to merge, or discard this patch.
server/app/Console/Commands/StartWebSocketServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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\Console\Commands;
12 12
 
Please login to merge, or discard this patch.
server/app/Console/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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\Console;
12 12
 
Please login to merge, or discard this patch.
server/app/Policies/ArticlePolicy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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\Policies;
11 11
 
Please login to merge, or discard this patch.
server/app/helpers.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
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
-if (! function_exists('asset_ts')) {
11
+if (!function_exists('asset_ts')) {
12 12
     /**
13 13
      * Asset path with timestamp.
14 14
      *
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
      */
20 20
     function asset_ts(string $path = '', string $directory = 'dist/'): string
21 21
     {
22
-        $link = '/' . $directory . $path;
22
+        $link = '/'.$directory.$path;
23 23
 
24
-        return $link . '?' . (
24
+        return $link.'?'.(
25 25
             is_file(public_path($link))
26 26
                 ? filemtime(public_path($link))
27 27
                 : random_int(0, 9999)
Please login to merge, or discard this patch.
server/app/Jobs/UploadAvatarProcess.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
server/app/Notifications/ConfirmEmailNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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\Notifications;
12 12
 
Please login to merge, or discard this patch.