Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-diactoros/src/Response.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children | c2387f117808 |
comparison
equal
deleted
inserted
replaced
11:bfffd8d7479a | 12:7a779792577d |
---|---|
1 <?php | 1 <?php |
2 /** | 2 /** |
3 * Zend Framework (http://framework.zend.com/) | 3 * @see https://github.com/zendframework/zend-diactoros for the canonical source repository |
4 * | 4 * @copyright Copyright (c) 2015-2017 Zend Technologies USA Inc. (http://www.zend.com) |
5 * @see http://github.com/zendframework/zend-diactoros for the canonical source repository | |
6 * @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com) | |
7 * @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License | 5 * @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License |
8 */ | 6 */ |
9 | 7 |
10 namespace Zend\Diactoros; | 8 namespace Zend\Diactoros; |
11 | 9 |
35 private $phrases = [ | 33 private $phrases = [ |
36 // INFORMATIONAL CODES | 34 // INFORMATIONAL CODES |
37 100 => 'Continue', | 35 100 => 'Continue', |
38 101 => 'Switching Protocols', | 36 101 => 'Switching Protocols', |
39 102 => 'Processing', | 37 102 => 'Processing', |
38 103 => 'Early Hints', | |
40 // SUCCESS CODES | 39 // SUCCESS CODES |
41 200 => 'OK', | 40 200 => 'OK', |
42 201 => 'Created', | 41 201 => 'Created', |
43 202 => 'Accepted', | 42 202 => 'Accepted', |
44 203 => 'Non-Authoritative Information', | 43 203 => 'Non-Authoritative Information', |