Passed
Branch v1.5.1 (ba2a89)
by Wanderson
03:18
created
www/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Autoload App
5 5
  */
6
-spl_autoload_register(function ($className) {
6
+spl_autoload_register(function($className) {
7 7
 	$className = str_replace('App\\', 'app\\', $className);
8 8
 	$file = BASE_PATH . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
9 9
 	if (file_exists($file)) {
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 /**
15 15
  * Autoload Vendor
16 16
  */
17
-spl_autoload_register(function ($className) {
17
+spl_autoload_register(function($className) {
18 18
 	$file = BASE_PATH . '/vendor/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
19 19
 	if (file_exists($file)) {
20 20
 		return require $file;
Please login to merge, or discard this patch.
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.
www/vendor/Win/Repositories/Database/Sql.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 	 */
91 91
 	public function update()
92 92
 	{
93
-		$columns = array_map(function ($column) {
93
+		$columns = array_map(function($column) {
94 94
 			return $column . ' = ?';
95 95
 		}, array_keys($this->values));
96 96
 
Please login to merge, or discard this patch.