Completed
Push — feature-output-formats ( a25fbf...c04345 )
by Arnaud
01:55
created
src/Generator/Redirect.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
         $generatedPages = new PagesCollection();
25 25
 
26
-        $filteredPages = $pagesCollection->filter(function (Page $page) {
26
+        $filteredPages = $pagesCollection->filter(function(Page $page) {
27 27
             return null !== $page->getVariable('redirect');
28 28
         });
29 29
 
Please login to merge, or discard this patch.
src/Generator/Pagination.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         $generatedPages = new PagesCollection();
26 26
 
27
-        $filteredPages = $pagesCollection->filter(function (Page $page) {
27
+        $filteredPages = $pagesCollection->filter(function(Page $page) {
28 28
             return in_array($page->getType(), [Type::HOMEPAGE, Type::SECTION]);
29 29
         });
30 30
 
Please login to merge, or discard this patch.
src/Generator/Homepage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $generatedPages = new PagesCollection();
26 26
 
27 27
         if (!$pagesCollection->has('index')) {
28
-            $filteredPages = $pagesCollection->filter(function (Page $page) {
28
+            $filteredPages = $pagesCollection->filter(function(Page $page) {
29 29
                 return ($page->getType() === null || $page->getType() === TYPE::PAGE)
30 30
                 && $page->getSection() == $this->config->get('site.paginate.homepage.section')
31 31
                 && !empty($page->getBody());
Please login to merge, or discard this patch.
src/Step/PagesGenerate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             call_user_func_array($this->builder->getMessageCb(), ['GENERATE', 'Generating pages']);
37 37
 
38 38
             $generators = $this->builder->getConfig()->get('generators');
39
-            array_walk($generators, function ($generator, $priority) use ($generatorManager) {
39
+            array_walk($generators, function($generator, $priority) use ($generatorManager) {
40 40
                 if (!class_exists($generator)) {
41 41
                     $message = sprintf("Unable to load generator '%s'", $generator);
42 42
                     call_user_func_array($this->builder->getMessageCb(), ['GENERATE_ERROR', $message]);
Please login to merge, or discard this patch.
src/Page/Prefix.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      *
39 39
      * @param string $string
40 40
      *
41
-     * @return string[]|null
41
+     * @return string|null
42 42
      */
43 43
     public static function getPrefix(string $string): ?string
44 44
     {
Please login to merge, or discard this patch.
src/Generator/TitleReplace.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
         $generatedPages = new PagesCollection();
25 25
 
26
-        $filteredPages = $pagesCollection->filter(function (Page $page) {
26
+        $filteredPages = $pagesCollection->filter(function(Page $page) {
27 27
             return null !== $page->getVariable('title');
28 28
         });
29 29
 
Please login to merge, or discard this patch.