Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-diactoros/src/AbstractSerializer.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 |
---|---|
9 | 9 |
10 namespace Zend\Diactoros; | 10 namespace Zend\Diactoros; |
11 | 11 |
12 use Psr\Http\Message\StreamInterface; | 12 use Psr\Http\Message\StreamInterface; |
13 use UnexpectedValueException; | 13 use UnexpectedValueException; |
14 | |
15 use function array_pop; | |
16 use function implode; | |
17 use function ltrim; | |
18 use function preg_match; | |
19 use function sprintf; | |
20 use function str_replace; | |
21 use function ucwords; | |
14 | 22 |
15 /** | 23 /** |
16 * Provides base functionality for request and response de/serialization | 24 * Provides base functionality for request and response de/serialization |
17 * strategies, including functionality for retrieving a line at a time from | 25 * strategies, including functionality for retrieving a line at a time from |
18 * the message, splitting headers from the body, and serializing headers. | 26 * the message, splitting headers from the body, and serializing headers. |