Release 3.0
Updates
- Migrating
ResponseStatusclass and constants to an Enum type. - Creating an
HttpMethodEnum - Adding class and constructor comments.
- Revamping file upload code - specifically on parsing the $_FILES superglobal.
- Supporting nested file uploads
- Expanded unit tests and coverage
Breaking Changes
ResponseStatus::getPhrase()is now an instance method (it is no longer static.) With an instance ofResponseStatusyou can call thegetPhrase()method. Example:
$status = ResponseStatus::NOT_FOUND;
$status->getPhrase();