Completed
Push — master ( 10baf1...2b2709 )
by Adriel
9s
created
Core/Lib/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     protected $blade;
15 15
 
16
-    public $framework , $request , $response , $params;
16
+    public $framework, $request, $response, $params;
17 17
 
18 18
     /**
19 19
      * Controller constructor.
Please login to merge, or discard this patch.
Core/Helpers/Paginate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Paginate extends Controller
8 8
 {
9
-    public $perPage, $currentPage, $total , $maxPage , $items , $skip;
9
+    public $perPage, $currentPage, $total, $maxPage, $items, $skip;
10 10
 
11 11
     /**
12 12
      * Paginate constructor.
Please login to merge, or discard this patch.
Core/Database/Migration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 class Migration extends MigrationDatabase
9 9
 {
10
-    public $schema , $application;
10
+    public $schema, $application;
11 11
 
12 12
     public function __construct()
13 13
     {
Please login to merge, or discard this patch.
Core/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 class Application
15 15
 {
16 16
     public $capsuleDb = [];
17
-    public $cache , $session , $di;
17
+    public $cache, $session, $di;
18 18
     private static $instance;
19 19
 
20 20
     public function __construct()
Please login to merge, or discard this patch.