Contracts
Requests are designed by contract in order to enforce correctness and type-safe definitions
HTTP Requests
Every HTTP request message has a specific form:
An HTTP message is either a request from a client to a server or a response from a server to a client.
Azu Contract Request
Requests are designed by contract in order to enforce correctness. What this means is that requests are strictly typed and can have preconditions. With this concept.
The Request provides concise, type-safe, and self-validated request objects.
Benefits:
Self-documented request objects.
Type-safe requests and parameters
Enables Focused and effective testing.
JSON body requests render object instances.
Azu::Contract are provided by tight integration with the Schema shard
Example Use:
Request Instances
Requests can be initialized are initialized in the background and property is available to the Endpoint of the same name of the request as the camel case.
Requests can be initialized from JSON, YAML, and the standard initializes method new.
Instance Methods
Custom Validators
When the built-in validation helpers are not enough for your needs, you can write your own validators or validation methods as you prefer.
Defining Custom Validators
Custom validators are simple classes that inherit from Schema::Validator
. These classes must implement the valid?
method which takes a record as an argument and performs the validation on it. The custom validator is called using the valid?
or validate!
method.
Using Custom Validators
To enable the custom validator to your structs or classes by simply defining the use ConfirmPasswordValidator
Last updated