Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-diactoros/src/MessageTrait.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 7a779792577d |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
7 | 7 |
8 namespace Zend\Diactoros; | 8 namespace Zend\Diactoros; |
9 | 9 |
10 use InvalidArgumentException; | 10 use InvalidArgumentException; |
11 use Psr\Http\Message\StreamInterface; | 11 use Psr\Http\Message\StreamInterface; |
12 | |
13 use function array_map; | |
14 use function array_merge; | |
15 use function get_class; | |
16 use function gettype; | |
17 use function implode; | |
18 use function is_array; | |
19 use function is_object; | |
20 use function is_resource; | |
21 use function is_string; | |
22 use function preg_match; | |
23 use function sprintf; | |
24 use function strtolower; | |
12 | 25 |
13 /** | 26 /** |
14 * Trait implementing the various methods defined in MessageInterface. | 27 * Trait implementing the various methods defined in MessageInterface. |
15 * | 28 * |
16 * @see https://github.com/php-fig/http-message/tree/master/src/MessageInterface.php | 29 * @see https://github.com/php-fig/http-message/tree/master/src/MessageInterface.php |