Test Failed
Push — feature-laravel-5.4 ( 61a401...1326fd )
by Kirill
03:29
created
app/Services/NavMatcher.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\Services;
10 10
 
@@ -63,6 +63,6 @@  discard block
 block discarded – undo
63 63
      */
64 64
     private function isMatched(string $needle): bool
65 65
     {
66
-        return Str::startsWith($this->route->getName(), $needle . '.');
66
+        return Str::startsWith($this->route->getName(), $needle.'.');
67 67
     }
68 68
 }
Please login to merge, or discard this patch.
app/Services/ContentRenderer/Anchors/AnchorLink.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\Services\ContentRenderer\Anchors;
11 11
 
Please login to merge, or discard this patch.
app/Services/ContentRenderer/Anchors/Parser.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\Services\ContentRenderer\Anchors;
11 11
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $links = [];
26 26
 
27
-        $body = preg_replace_callback('/<(h\d+)>(.*?)<\/h\d+>/isu', function ($data) use (&$links) {
27
+        $body = preg_replace_callback('/<(h\d+)>(.*?)<\/h\d+>/isu', function($data) use (&$links) {
28 28
             list($data, $tag, $header) = $data;
29 29
 
30 30
             $id = $this->createAnchorName($header);
Please login to merge, or discard this patch.
app/Services/ContentRenderer/RawTextRenderer.php 1 patch
Spacing   +6 added lines, -6 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\Services\ContentRenderer;
12 12
 
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
     private function removeDisallowedTags(string $body): string
36 36
     {
37 37
         return strip_tags($body, [
38
-            'b', 'strong',      // bold
39
-            'i', 'em',          // italic
40
-            'ul', 'li', 'ol',   // list
41
-            'a',                // link
42
-            'code', 'pre',       // code
38
+            'b', 'strong', // bold
39
+            'i', 'em', // italic
40
+            'ul', 'li', 'ol', // list
41
+            'a', // link
42
+            'code', 'pre', // code
43 43
         ]);
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
app/Services/ContentRenderer/AbstractRenderer.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\Services\ContentRenderer;
12 12
 
Please login to merge, or discard this patch.
app/Providers/ContentRendererServiceProvider.php 1 patch
Spacing   +4 added lines, -4 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\Providers;
12 12
 
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
         // Documentation renderer
34 34
         $this->app->when(ContentObserver::class)
35 35
             ->needs(ContentRenderInterface::class)
36
-            ->give(function () {
36
+            ->give(function() {
37 37
                 return new LaravelDocsRenderer(new GithubMarkdown());
38 38
             });
39 39
 
40 40
         // Tips content renderer
41 41
         $this->app->when(RawTextRenderer::class)
42 42
             ->needs(ContentRenderInterface::class)
43
-            ->give(function () {
43
+            ->give(function() {
44 44
                 return new RawTextRenderer(new GithubMarkdown());
45 45
             });
46 46
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     private function registerDefaultBehaviour()
52 52
     {
53
-        $this->app->singleton(MarkdownRenderer::class, function () {
53
+        $this->app->singleton(MarkdownRenderer::class, function() {
54 54
             return new MarkdownRenderer(new GithubMarkdown());
55 55
         });
56 56
 
Please login to merge, or discard this patch.
app/Providers/HttpClientServiceProvider.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\Providers;
11 11
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function register(): void
25 25
     {
26
-        $this->app->singleton(Guzzle::class, function () {
26
+        $this->app->singleton(Guzzle::class, function() {
27 27
             return new Guzzle();
28 28
         });
29 29
 
Please login to merge, or discard this patch.
app/Providers/DateTimeServiceProvider.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\Providers;
12 12
 
Please login to merge, or discard this patch.
app/Providers/EnumsServiceProvider.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\Providers;
12 12
 
Please login to merge, or discard this patch.