Completed
Push — master ( c6bc12...8e6b80 )
by Iman
01:46
created
src/Facade.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 
12 12
 class Facade extends LaravelFacade
13 13
 {
14
+    /**
15
+     * @return string
16
+     */
14 17
     protected static function getFacadeAccessor()
15 18
     {
16 19
         return static::class;
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Imanghafoori\SmartFacades;
4 4
 
5
-use TypeError;
6
-use ReflectionMethod;
7
-use RuntimeException;
8
-use Illuminate\Support\Str;
9 5
 use Illuminate\Support\Facades\Event;
10 6
 use Illuminate\Support\Facades\Facade as LaravelFacade;
7
+use Illuminate\Support\Str;
8
+use ReflectionMethod;
9
+use RuntimeException;
10
+use TypeError;
11 11
 
12 12
 class Facade extends LaravelFacade
13 13
 {
Please login to merge, or discard this patch.