Completed
Branch master (368d4a)
by ARCANEDEV
06:04
created
src/PolicyManager.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @param  string  $class
102 102
      *
103
-     * @return \Arcanedev\LaravelPolicies\Contracts\Policy|mixed
103
+     * @return Contracts\Policy
104 104
      */
105 105
     public function parsePolicy(string $class): PolicyContract
106 106
     {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     /**
163 163
      * Get the gate access instance.
164 164
      *
165
-     * @return \Illuminate\Contracts\Auth\Access\Gate|mixed
165
+     * @return Gate
166 166
      */
167 167
     private function gate(): Gate
168 168
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
     Policy as PolicyContract,
9 9
     PolicyManager as PolicyManagerContract
10 10
 };
11
+use Illuminate\Contracts\Auth\Access\Gate;
11 12
 use Illuminate\Contracts\Foundation\Application;
12 13
 use Illuminate\Support\Collection;
13
-use Illuminate\Contracts\Auth\Access\Gate;
14 14
 
15 15
 /**
16 16
  * Class     PolicyManager
Please login to merge, or discard this patch.