1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 10:19:25 +02:00
ampache/modules/React/Stream/StreamInterface.php

13 lines
362 B
PHP

<?php
namespace React\Stream;
use Evenement\EventEmitterInterface;
// This class exists because ReadableStreamInterface and WritableStreamInterface
// both need close methods.
// In PHP <= 5.3.8 a class can not implement 2 interfaces with coincidental matching methods
interface StreamInterface extends EventEmitterInterface
{
public function close();
}