Mercurial > hg > isophonics-drupal-site
diff vendor/zendframework/zend-diactoros/src/Server.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 7a779792577d |
children |
line wrap: on
line diff
--- a/vendor/zendframework/zend-diactoros/src/Server.php Thu Apr 26 11:26:54 2018 +0100 +++ b/vendor/zendframework/zend-diactoros/src/Server.php Tue Jul 10 15:07:59 2018 +0100 @@ -1,21 +1,26 @@ <?php /** * @see https://github.com/zendframework/zend-diactoros for the canonical source repository - * @copyright Copyright (c) 2015-2017 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2015-2018 Zend Technologies USA Inc. (http://www.zend.com) * @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License */ namespace Zend\Diactoros; use OutOfBoundsException; +use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; -use Psr\Http\Message\ResponseInterface; + +use function property_exists; /** * "Serve" incoming HTTP requests * * Given a callback, takes an incoming request, dispatches it to the * callback, and then sends a response. + * + * @deprecated since 1.8.0. We recommend using the `RequestHandlerRunner` class + * from the zendframework/zend-httphandlerrunner package instead. */ class Server {