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 23d754a commit 6f427d8Copy full SHA for 6f427d8
src/GroupInterface.php
@@ -0,0 +1,8 @@
1
+<?php declare(strict_types=1);
2
+
3
+namespace WyriHaximus\React\Parallel;
4
5
+interface GroupInterface
6
+{
7
+ public function __toString(): string;
8
+}
src/LowLevelPoolInterface.php
@@ -4,7 +4,7 @@
interface LowLevelPoolInterface extends PoolInterface
{
- public function acquireGroup(): Group;
+ public function acquireGroup(): GroupInterface;
9
- public function releaseGroup(Group $group): void;
+ public function releaseGroup(GroupInterface $group): void;
10
}
0 commit comments