Completed
Push — master ( 6b0e91...baa484 )
by ARCANEDEV
03:10
created
src/Policies/Policy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @param  \Arcanesoft\Contracts\Auth\Models\User  $user
19 19
      * @param  mixed                                   $ability
20 20
      *
21
-     * @return bool
21
+     * @return boolean|null
22 22
      */
23 23
     public function before(User $user, $ability)
24 24
     {
Please login to merge, or discard this patch.
src/Services/RoutesViewer/Entities/RouteCollection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace Arcanesoft\Foundation\Services\RoutesViewer\Entities;
2 2
 
3
+use Illuminate\Routing\Route as IlluminateRoute;
3 4
 use Illuminate\Support\Arr;
4 5
 use Illuminate\Support\Collection;
5 6
 use Illuminate\Support\Str;
6
-use Illuminate\Routing\Route as IlluminateRoute;
7 7
 
8 8
 /**
9 9
  * Class     RouteCollection
Please login to merge, or discard this patch.
src/Services/RoutesViewer/Manager.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -71,6 +71,10 @@
 block discarded – undo
71 71
      |  Other Functions
72 72
      | ------------------------------------------------------------------------------------------------
73 73
      */
74
+
75
+    /**
76
+     * @param string $key
77
+     */
74 78
     public function getConfig($key, $default = null)
75 79
     {
76 80
         return config("arcanesoft.foundation.routes-viewer.{$key}", $default);
Please login to merge, or discard this patch.