Passed
Branch master (634da9)
by refat
03:15
created
core/helpers.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
     /**
8 8
      * Get Application instance
9 9
      *
10
-     * @param \System\File $file
11 10
      * @return \System\Application
12 11
      */
13 12
     function app()
Please login to merge, or discard this patch.
core/System/Email.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@
 block discarded – undo
57 57
     /**
58 58
      * To add addresses or attachments easily to the object
59 59
      *
60
+     * @param string $add
60 61
      * @return void
61 62
      */
62 63
     private function add($input, $add)
Please login to merge, or discard this patch.
core/System/Http/Request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@
 block discarded – undo
260 260
      * Get value from $_SERVER by the given key
261 261
      *
262 262
      * @param string $key
263
-     * @return mixed
263
+     * @return string
264 264
      */
265 265
     public function server($key)
266 266
     {
Please login to merge, or discard this patch.
routes/admin/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
   'middleware' => ['Authenticate', 'Permissions']
9 9
 ];
10 10
 
11
-$app->route->group($adminOptions, function ($route) {
11
+$app->route->group($adminOptions, function($route) {
12 12
     $route->add('/', 'Home');
13 13
     $route->add('/home', 'Home');
14 14
 });
Please login to merge, or discard this patch.