Skip to content

Release 3.0

Choose a tag to compare

@brentscheffler brentscheffler released this 21 Sep 20:56
· 8 commits to master since this release
91a0546

Updates

  • Migrating ResponseStatus class and constants to an Enum type.
  • Creating an HttpMethod Enum
  • 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 of ResponseStatus you can call the getPhrase() method. Example:
$status = ResponseStatus::NOT_FOUND;
$status->getPhrase();