We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
We need to validate parameters based on their value
Currently we use the following to validate null values:
HeaderParam::init('key', '')->required();
But we need another function that does the same but also check for empty values like:
HeaderParam::init('key', '')->requiredNonEmpty();