Test Failed
Push — feature-laravel-5.4 ( 91d9b6...3f0a47 )
by Kirill
04:00
created
app/Services/ContentRenderer/Support/HeadersNormalizer.php 1 patch
Spacing   +4 added lines, -4 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\ContentRenderer\Support;
10 10
 
@@ -33,17 +33,17 @@  discard block
 block discarded – undo
33 33
      */
34 34
     protected function normalizeHeaders(): \Closure
35 35
     {
36
-        return function (string $body) {
36
+        return function(string $body) {
37 37
             $delta = $this->getMaxHeaderLevel($body) - $this->maxHeaderLevel;
38 38
 
39
-            return preg_replace_callback('/^(#+)\s+(.*?)\s*$/mius', function (array $matches) use ($delta) {
39
+            return preg_replace_callback('/^(#+)\s+(.*?)\s*$/mius', function(array $matches) use ($delta) {
40 40
                 [$body, $tag, $title] = $matches;
41 41
 
42 42
                 $level = $this->mdTagToLevel($tag);
43 43
                 $level += $delta;
44 44
                 $level = min($this->minHeaderLevel, max($this->maxHeaderLevel, $level));
45 45
 
46
-                return str_repeat('#', $level) . ' ' . $title;
46
+                return str_repeat('#', $level).' '.$title;
47 47
             }, $body);
48 48
         };
49 49
     }
Please login to merge, or discard this patch.
app/Models/Docs/SlugObserver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function saving(Docs $docs): void
23 23
     {
24
-        if (! $docs->slug) {
24
+        if (!$docs->slug) {
25 25
             $docs->slug = Str::slug($docs->title);
26 26
         }
27 27
     }
Please login to merge, or discard this patch.
app/Console/Commands/GitHubDocsImport.php 1 patch
Spacing   +5 added lines, -5 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
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 = $this->getTopLevelHeader($page->getUrl(), $page->getContent());
141 141
                 $docs->slug  = $page->getUrl();
142 142
             }
Please login to merge, or discard this patch.