Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-diactoros/src/RequestTrait.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 7a779792577d |
children |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
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 use Psr\Http\Message\UriInterface; | 12 use Psr\Http\Message\UriInterface; |
13 | |
14 use function array_keys; | |
15 use function get_class; | |
16 use function gettype; | |
17 use function is_object; | |
18 use function is_string; | |
19 use function preg_match; | |
20 use function sprintf; | |
21 use function strtolower; | |
13 | 22 |
14 /** | 23 /** |
15 * Trait with common request behaviors. | 24 * Trait with common request behaviors. |
16 * | 25 * |
17 * Server and client-side requests differ slightly in how the Host header is | 26 * Server and client-side requests differ slightly in how the Host header is |