Completed
Push — feature-output-formats ( f5696a...244939 )
by Arnaud
02:20
created
src/Renderer/Twig/Extension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function filterBy(PagesCollection $pages, string $variable, string $value): CollectionInterface
118 118
     {
119
-        $filteredPages = $pages->filter(function (Page $page) use ($variable, $value) {
119
+        $filteredPages = $pages->filter(function(Page $page) use ($variable, $value) {
120 120
             // dedicated getter?
121 121
             $method = 'get'.ucfirst($variable);
122 122
             if (method_exists($page, $method) && $page->$method() == $value) {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function sortByWeight($array)
160 160
     {
161
-        $callback = function ($a, $b) {
161
+        $callback = function($a, $b) {
162 162
             if (!isset($a['weight'])) {
163 163
                 return 1;
164 164
             }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      */
192 192
     public function sortByDate($array)
193 193
     {
194
-        $callback = function ($a, $b) {
194
+        $callback = function($a, $b) {
195 195
             if (!isset($a['date'])) {
196 196
                 return -1;
197 197
             }
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->getNodeType(), [NodeType::HOMEPAGE, NodeType::SECTION]);
29 29
         });
30 30
 
Please login to merge, or discard this patch.
src/Generator/ExternalBody.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 null !== $page->getVariable('external');
29 29
         });
30 30
 
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->getTitle();
28 28
         });
29 29
 
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->getNodeType() === null
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/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.