Deprecated
Table of Contents
src/Request.php |
Request.php
Line | Element | Reason |
---|---|---|
119 | Request::status() | Soon this option will be removed and should be replaced with a call to the Response class New way of using the Response class: Response::withStatus(401, 'Not Authorized'); |
137 | Request::header() | Soon this option will be removed and should be replaced with a call to the Response class New way of using the Response class: Response::withHeader('header-key', 'header-value'); |
159 | Request::send() | Soon this option will be removed and should be replaced with a call to the Response class New way of using the Response class: Response::status(200, 'OK')::setBody($output); |