@@ -9,10 +9,10 @@ |
||
| 9 | 9 | namespace VXM\Async; |
| 10 | 10 | |
| 11 | 11 | use Closure; |
| 12 | +use Illuminate\Contracts\Events\Dispatcher as EventDispatcher; |
|
| 12 | 13 | use Illuminate\Support\Str; |
| 13 | 14 | use Spatie\Async\Process\Runnable; |
| 14 | 15 | use VXM\Async\Runtime\ParentRuntime; |
| 15 | -use Illuminate\Contracts\Events\Dispatcher as EventDispatcher; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * @author Vuong Minh <[email protected]> |
@@ -8,11 +8,11 @@ |
||
| 8 | 8 | namespace VXM\Async\Runtime; |
| 9 | 9 | |
| 10 | 10 | use Spatie\Async\Pool; |
| 11 | +use Spatie\Async\Process\ParallelProcess; |
|
| 11 | 12 | use Spatie\Async\Process\Runnable; |
| 13 | +use Spatie\Async\Runtime\ParentRuntime as BaseParentRuntime; |
|
| 12 | 14 | use Symfony\Component\Process\Process; |
| 13 | -use Spatie\Async\Process\ParallelProcess; |
|
| 14 | 15 | use VXM\Async\Process\SynchronousProcess; |
| 15 | -use Spatie\Async\Runtime\ParentRuntime as BaseParentRuntime; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * ParentRuntime support invoke console environment in child runtime mode. |