comparison vendor/zendframework/zend-diactoros/src/CallbackStream.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
8 */ 8 */
9 9
10 namespace Zend\Diactoros; 10 namespace Zend\Diactoros;
11 11
12 use InvalidArgumentException; 12 use InvalidArgumentException;
13 use Psr\Http\Message\StreamInterface;
13 use RuntimeException; 14 use RuntimeException;
14 use Psr\Http\Message\StreamInterface; 15
16 use function array_key_exists;
17
18 use const SEEK_SET;
15 19
16 /** 20 /**
17 * Implementation of PSR HTTP streams 21 * Implementation of PSR HTTP streams
18 */ 22 */
19 class CallbackStream implements StreamInterface 23 class CallbackStream implements StreamInterface