File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ private function removeDirectoryRecursive(string $dir): void
240
240
241
241
$ files = array_diff (scandir ($ dir ), ['. ' , '.. ' ]);
242
242
foreach ($ files as $ file ) {
243
- $ path = $ dir . DIRECTORY_SEPARATOR . $ file ;
243
+ $ path = $ dir. DIRECTORY_SEPARATOR . $ file ;
244
244
if (is_dir ($ path )) {
245
245
$ this ->removeDirectoryRecursive ($ path );
246
246
} else {
Original file line number Diff line number Diff line change 6
6
use Rcalicdan \FiberAsync \Contracts \PromiseInterface ;
7
7
use Rcalicdan \FiberAsync \Handlers \LoopOperations \BenchmarkHandler ;
8
8
use Rcalicdan \FiberAsync \Handlers \LoopOperations \ConcurrentExecutionHandler ;
9
- use Rcalicdan \FiberAsync \Handlers \LoopOperations \HttpExecutionHandler ;
10
9
use Rcalicdan \FiberAsync \Handlers \LoopOperations \LoopExecutionHandler ;
11
10
use Rcalicdan \FiberAsync \Handlers \LoopOperations \TaskExecutionHandler ;
12
11
use Rcalicdan \FiberAsync \Handlers \LoopOperations \TimeoutHandler ;
13
- use Rcalicdan \FiberAsync \Http \Response ;
14
12
15
13
/**
16
14
* High-level operations that manage the event loop lifecycle automatically.
You can’t perform that action at this time.
0 commit comments