| 1 | <?php |
||
| 15 | class Test |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * HTTP HEAD: test action handler |
||
| 20 | * |
||
| 21 | * The HEAD method is identical to GET except that the server MUST NOT return |
||
| 22 | * a message-body in the response. The metainformation contained in the HTTP |
||
| 23 | * headers in response to a HEAD request SHOULD be identical to the information |
||
| 24 | * sent in response to a GET request. This method can be used for obtaining |
||
| 25 | * metainformation about the entity implied by the request without transferring |
||
| 26 | * the entity-body itself. This method is often used for testing hypertext links |
||
| 27 | * for validity, accessibility, and recent modification. |
||
| 28 | * |
||
| 29 | * @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.4 |
||
| 30 | * |
||
| 31 | * @return null |
||
| 32 | * @cacheable true |
||
| 33 | * @codeCoverageIgnore |
||
| 34 | * @apix_man_toc_hidden |
||
| 35 | */ |
||
| 36 | final public function onTest() |
||
| 42 | |||
| 43 | } |
||
| 44 |