@@ -23,7 +23,7 @@ |
||
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 |
@@ -119,7 +119,7 @@ |
||
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 |