UriTooLongStatusProvider
Description
UriTooLongStatusProvider
is a trait. It adds a getHttpStatus()
method to your entity, value object or exception. This method returns a HttpStatus
value object that represents the status HTTP 414 URI Too Long.
UriTooLongStatusProvider
satisfies the HttpStatusProvider
and HttpException
interfaces.
Public Interface
UriTooLongStatusProvider
has the following public interface:
// UriTooLongStatusProvider lives in this namespace
namespace GanbaroDigital\HttpStatus\StatusProviders\RequestError;
// our return types
use GanbaroDigital\HttpStatus\StatusValues\RequestError\UriTooLongStatus;
trait UriTooLongStatusProvider
{
/**
* returns the HTTP status code that best represents this object
*
* @return UriTooLongStatus
*/
public function getHttpStatus();
}
How To Use
In Value Objects and Entities
Use this trait in any value object or entity that maps onto the HTTP 414 status.
use GanbaroDigital\HttpStatus\Interfaces\HttpStatusProvider;
use GanbaroDigital\HttpStatus\StatusProviders\RequestError\UriTooLongStatusProvider;
class MyValueObject implements HttpStatusProvider
{
// adds getHttpStatus()
use UriTooLongStatusProvider;
}
PHP does not let traits implement interfaces. Your value object or entity will need to implement the HttpStatusProvider
interface explicitly.
In Exceptions
Use this trait in any exception that maps onto the HTTP 414 status.
use GanbaroDigital\HttpStatus\Interfaces\HttpRequestErrorException;
use GanbaroDigital\HttpStatus\StatusProviders\RequestError\UriTooLongStatusProvider;
class MyException implements HttpRequestErrorException
{
// adds getHttpStatus()
use UriTooLongStatusProvider;
}
PHP does not let traits implement interfaces. Your value object or entity will need to implement the HttpRequestErrorException
interface explicitly.
Class Contract
Here is the contract for this class:
GanbaroDigital\HttpStatus\StatusProviders\RequestError\UriTooLongStatusProvider
[x] Can instantiate class that uses this trait
[x] Returns uri too long status
Class contracts are built from this class's unit tests.
Future releases of this class may add to this contract. New additions may include:
- clarifying existing behaviour (e.g. stricter contract around input or return types)
- add new behaviours (e.g. extra class methods)
When you use this class, you can only rely on the behaviours documented by this contract.
If you:
- find other ways to use this class,
- or depend on behaviours that are not covered by a unit test,
- or depend on undocumented internal states of this class,
... your code may not work in the future.
Notes
UriTooLongStatusProvider
returns a new instance ofUriTooLongStatus
each time you callgetHttpStatus()
.
See Also
UriTooLongStatus
- the HTTP status value object returned by this traitHttpStatusProvider
- interface that your value object or entity should implementHttpRequestErrorException
- interface that your exception should implement