zlik/http-status-codes-trait

A PHP trait which defines all standard HTTP status codes.

1.0 2013-11-23 23:15 UTC

This package is auto-updated.

Last update: 2024-04-13 03:52:36 UTC


README

#HTTP Status Codes Trait

A PHP trait which defines all standard HTTP status codes.

#Installing with Composer

"require": {
    "zlik/http-status-codes-trait": "1.0"
}

#Usage

Mix the \Zlik\HttpStatusCodes trait into your class and utilize it's public properties to get HTTP status codes. For example:

class Foo {
    use \Zlik\HttpStatusCodes;
}

$foo = new Foo;
echo $foo->HTTP_NOT_FOUND; //outputs '404'

#Requirements

PHP 5.4+