Skip to content

Commit 672c828

Browse files
committed
Drop ext-eio
1 parent 3133bd7 commit 672c828

File tree

10 files changed

+0
-1384
lines changed

10 files changed

+0
-1384
lines changed

src/Eio/Adapter.php

Lines changed: 0 additions & 539 deletions
This file was deleted.

src/Eio/ConstTypeDetector.php

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/Eio/OpenFlagResolver.php

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/Eio/RuntimeException.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/Eio/UnexpectedValueException.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/Filesystem.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ public static function getSupportedAdapters()
5757
{
5858
$adapters = [];
5959

60-
if (Eio\Adapter::isSupported()) {
61-
$adapters[] = 'Eio';
62-
}
63-
6460
if (ChildProcess\Adapter::isSupported()) {
6561
$adapters[] = 'ChildProcess';
6662
}

tests/Adapters/AbstractAdaptersTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ protected function adapterFactory(&$adapters, $loopSlug, callable $loopFactory)
5858
$adapters[$loopSlug . '-factory'] = $this->getFacoryProvider($loopFactory);
5959
$adapters[$loopSlug . '-child-process'] = $this->getChildProcessProvider($loopFactory);
6060

61-
if (extension_loaded('eio')) {
62-
$adapters[$loopSlug . '-eio'] = $this->getEioProvider($loopFactory);
63-
}
64-
6561
if (extension_loaded('pthreads')) {
6662
$adapters[$loopSlug . '-pthreads'] = $this->getPthreadsProvider($loopFactory);
6763
}

0 commit comments

Comments
 (0)