@@ -3,7 +3,6 @@ |
||
3 | 3 | require __DIR__ . '/../vendor/autoload.php'; |
4 | 4 | |
5 | 5 | use mpyw\Co\Co; |
6 | -use mpyw\Co\CURLException; |
|
7 | 6 | |
8 | 7 | function curl_init_with($url, array $options = [CURLOPT_RETURNTRANSFER => true]) { |
9 | 8 | $ch = curl_init($url); |
@@ -7,8 +7,6 @@ |
||
7 | 7 | use mpyw\Co\Internal\CoOption; |
8 | 8 | use mpyw\Co\Internal\GeneratorContainer; |
9 | 9 | use mpyw\Co\Internal\Pool; |
10 | -use mpyw\Co\Internal\ControlException; |
|
11 | - |
|
12 | 10 | use mpyw\RuntimePromise\Deferred; |
13 | 11 | use mpyw\RuntimePromise\PromiseInterface; |
14 | 12 |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | namespace mpyw\Co\Internal; |
4 | -use mpyw\RuntimePromise\Deferred; |
|
5 | 4 | use mpyw\Co\AllFailedException; |
6 | 5 | use mpyw\Co\CoInterface; |
7 | 6 |