We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c201b1b commit a8bf775Copy full SHA for a8bf775
src/Facades/ChildProcess.php
@@ -3,6 +3,7 @@
3
namespace Native\Laravel\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
+use Native\Laravel\ChildProcess as Implement;
7
8
/**
9
* @method static \Native\Laravel\ChildProcess[] all()
@@ -18,6 +19,8 @@ class ChildProcess extends Facade
18
19
{
20
protected static function getFacadeAccessor()
21
- return \Native\Laravel\ChildProcess::class;
22
+ self::clearResolvedInstance(Implement::class);
23
+
24
+ return Implement::class;
25
}
26
0 commit comments