| 1 | <?php |
||
| 10 | abstract class Relay |
||
| 11 | { |
||
| 12 | public const TCP_SOCKET = 'tcp'; |
||
| 13 | public const UNIX_SOCKET = 'unix'; |
||
| 14 | public const STREAM = 'pipes'; |
||
| 15 | |||
| 16 | private const CONNECTION = '/(?P<protocol>[^:\/]+):\/\/(?P<arg1>[^:]+)(:(?P<arg2>[^:]+))?/'; |
||
| 17 | |||
| 18 | public static function create(string $connection): RelayInterface |
||
| 47 | } |
||
| 48 |