Passed
Push — master ( 719c37...fbe8d9 )
by Mehmet
01:47
created
src/Twig/Functions/Pagination.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Selami\View\Twig\Functions;
5 5
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function run(): string
39 39
     {
40
-        $items =  '';
40
+        $items = '';
41 41
         $renderedEllipses = 0;
42 42
         $useEllipses = ($this->total > 10) ? 1 : 0;
43 43
         for ($itemIndex = 1; $itemIndex <= $this->total; $itemIndex++) {
Please login to merge, or discard this patch.