Passed
Branch v1.5.1 (ba2a89)
by Wanderson
03:18
created
www/vendor/Win/Common/Pagination.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
 		$this->count = $count;
37 37
 		$this->last = ceil($count / $this->pageSize);
38 38
 		$this->current = min($this->last, $this->current);
39
-		$this->prev =  max(1, $this->current - 1);
39
+		$this->prev = max(1, $this->current - 1);
40 40
 		$this->next = min($this->last, $this->current + 1);
41 41
 		$this->offset = $this->pageSize * ($this->current - 1);
42 42
 	}
Please login to merge, or discard this patch.