Completed
Push — master ( f10ef3...128b60 )
by Adriel
02:53
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/Utils.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     }
83 83
 
84 84
     /**
85
-     * @return bool
85
+     * @return string|boolean
86 86
      */
87 87
     public static function value($key = null)
88 88
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * @param $key
98 98
      *
99
-     * @return string|static
99
+     * @return string
100 100
      */
101 101
     public static function formatDate($key)
102 102
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * @param $value
112 112
      *
113
-     * @return mixed
113
+     * @return string
114 114
      */
115 115
     public static function formatMoney($value)
116 116
     {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      * @param $expires
254 254
      * @param $secret
255 255
      *
256
-     * @return mixed
256
+     * @return string
257 257
      */
258 258
     private static function getIv($expires, $secret)
259 259
     {
Please login to merge, or discard this patch.
App/Views/layout/footer.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 </div>
2 2
 <div class="content">
3
-	&copy; <?php echo date('Y');?>  by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a>
3
+	&copy; <?php echo date('Y'); ?>  by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a>
4 4
 </div>
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.