Source of file StreamInterface.php
Size: 0,266 Bytes - Last Modified: 2018-11-03T09:50:48-04:00
G:/AdobeConnectClient/src/Connection/StreamInterface.php
12345678910111213141516 | <?php namespace AdobeConnectClient\Connection; /** * Stream Interface. */ interface StreamInterface { /** * Reads all data from the stream into a string, from the beginning to end. * * @return string */ public function __toString(); } |