Test Failed
Push — feature-laravel-5.4 ( d60c00...e6a26c )
by Kirill
03:15
created
app/Models/Article.php 1 patch
Spacing   +3 added lines, -3 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\Models;
12 12
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * @param  Authenticatable|User|null $user
102 102
      * @return bool
103 103
      */
104
-    public function isAllowedForUser(?Authenticatable $user): bool
104
+    public function isAllowedForUser(? Authenticatable $user) : bool
105 105
     {
106 106
         $isAuthor = $user === null ? false : ($this->user->id === $user->getAuthIdentifier());
107 107
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             return $this->image;
122 122
         }
123 123
 
124
-        return static::DEFAULT_IMAGE_PATH . $this->image;
124
+        return static::DEFAULT_IMAGE_PATH.$this->image;
125 125
     }
126 126
 
127 127
     /**
Please login to merge, or discard this patch.
app/Models/Bot.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\Models;
10 10
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function getAvatarAttribute(string $avatar): string
36 36
     {
37
-        return self::DEFAULT_AVATAR_PATH . $avatar;
37
+        return self::DEFAULT_AVATAR_PATH.$avatar;
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
app/Services/DataProviders/DataProviderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\Services\DataProviders;
10 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/TestController.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\Http\Controllers;
12 12
 
Please login to merge, or discard this patch.
app/Services/DataProviders/LaravelNewsDataProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @return \Generator|ExternalArticle[]
59
+     * @return \Generator
60 60
      * @throws \RuntimeException
61 61
      */
62 62
     private function getArticles(): \Generator
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\Services\DataProviders;
10 10
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
         $body = $response->getBody();
67 67
 
68
-        yield from $this->parseBody((string)$body);
68
+        yield from $this->parseBody((string) $body);
69 69
     }
70 70
 
71 71
     /**
@@ -88,13 +88,13 @@  discard block
 block discarded – undo
88 88
             );
89 89
 
90 90
             ['images' => $imagesPreview, 'body' => $preview] = $this->parseContent(
91
-                (string)$this->getContentOf($node, 'description')
91
+                (string) $this->getContentOf($node, 'description')
92 92
             );
93 93
 
94 94
 
95
-            $title      = (string)$this->getContentOf($node, 'title');
96
-            $link       = (string)$this->getContentOf($node, 'link');
97
-            $published  = (string)$this->getContentOf($node, 'pubDate');
95
+            $title      = (string) $this->getContentOf($node, 'title');
96
+            $link       = (string) $this->getContentOf($node, 'link');
97
+            $published  = (string) $this->getContentOf($node, 'pubDate');
98 98
 
99 99
             $article    = new ExternalArticle($title, trim($content), $link);
100 100
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * @param  string      $tagName
134 134
      * @return null|string
135 135
      */
136
-    private function getContentOf(\DOMElement $root, string $tagName): ?string
136
+    private function getContentOf(\DOMElement $root, string $tagName): ? string
137 137
     {
138 138
         $node = $root->getElementsByTagName($tagName);
139 139
 
Please login to merge, or discard this patch.
app/Services/DataProviders/ExternalArticle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\Services\DataProviders;
10 10
 
Please login to merge, or discard this patch.
app/Providers/DataProviderServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\Providers;
10 10
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     public function register(): void
22 22
     {
23
-        $this->app->singleton(Manager::class, function (Application $app) {
23
+        $this->app->singleton(Manager::class, function(Application $app) {
24 24
             $config = $app->make(Repository::class);
25 25
             $providers = (array) $config->get('data-providers.providers', []);
26 26
 
Please login to merge, or discard this patch.
app/Console/Commands/DataProvidersImport.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @return \Generator|Article[]
109
+     * @return \Generator
110 110
      */
111 111
     private function getLatestBotArticles(): \Generator
112 112
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     private function getLatestBotArticles(): \Generator
112 112
     {
113 113
         $bots = Bot::query()
114
-            ->with(['articles' => function (MorphMany $relation) {
114
+            ->with(['articles' => function(MorphMany $relation) {
115 115
                 return $relation->latest('published_at')->take(1);
116 116
             }])
117 117
             ->get();
Please login to merge, or discard this patch.
app/Models/Article/ContentPreviewObserver.php 1 patch
Spacing   +2 added lines, -2 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\Models\Article;
11 11
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     public function saving(Article $article): void
39 39
     {
40 40
         if ($article->content_source) {
41
-            if (! $article->preview_source) {
41
+            if (!$article->preview_source) {
42 42
                 $article->preview_source = Str::words($article->content_source, 100, '…');
43 43
             }
44 44
 
Please login to merge, or discard this patch.