Passed
Push — pr/879 ( 237eb9...0caef9 )
by Arnaud
80:08 queued 01:18
created
src/Generator/Homepage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function generate(): void
25 25
     {
26
-        $subPages = $this->builder->getPages()->filter(function (Page $page) {
26
+        $subPages = $this->builder->getPages()->filter(function(Page $page) {
27 27
             return $page->getType() == TYPE::PAGE
28 28
                 && $page->getId() != 'index' // excludes homepage
29 29
                 && $page->isVirtual() === false; // excludes virtual pages
Please login to merge, or discard this patch.
src/Command/Serve.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
         $buildProcess->setTty(Process::isTtySupported());
120 120
         $buildProcess->setPty(Process::isPtySupported());
121 121
 
122
-        $processOutputCallback = function ($type, $data) use ($output) {
122
+        $processOutputCallback = function($type, $data) use ($output) {
123 123
             $output->write($data, false, OutputInterface::OUTPUT_RAW);
124 124
         };
125 125
 
Please login to merge, or discard this patch.