Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\FtpServer\Factories; |
| 3 | |
| 4 | use React\Socket\ConnectorInterface; |
| 5 | use React\Socket\ServerInterface; |
| 6 | |
| 7 | interface ServerFactoryInterface |
| 8 | { |
| 9 | public function createServer(int $port): ServerInterface; |
| 10 | |
| 11 | public function createConnector(): ConnectorInterface; |
| 12 | } |