Passed
Push — v5.x ( 4cf44b...6eb5e2 )
by Thierry
02:02
created
src/Plugin/Response/Pagination/PaginatorPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,18 +131,18 @@
 block discarded – undo
131 131
     public function render(Paginator $xPaginator, Call $xCall, string $sWrapperId)
132 132
     {
133 133
         $aPages = $xPaginator->pages();
134
-        if(count($aPages) === 0)
134
+        if (count($aPages) === 0)
135 135
         {
136 136
             return;
137 137
         }
138 138
         $xStore = $this->_render($aPages);
139
-        if(!$xStore)
139
+        if (!$xStore)
140 140
         {
141 141
             return;
142 142
         }
143 143
 
144 144
         // Append the page number to the parameter list, if not yet given.
145
-        if(!$xCall->hasPageNumber())
145
+        if (!$xCall->hasPageNumber())
146 146
         {
147 147
             $xCall->addParameter(Parameter::PAGE_NUMBER, 0);
148 148
         }
Please login to merge, or discard this patch.