Function __global->improperly_filled_in
Definitions
sources/failure.php
- Complain about a field being missing.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $name | string | No | No | required parameter | N/A | N/A | The name of the parameter |
| $posted | ?boolean | No | No | required parameter | N/A | N/A | Whether the parameter is a POST parameter (null: undetermined) |
| $array | array | No | No | required parameter | N/A | N/A | The array we're extracting parameters from |
Preview
Code (PHP)
/**
* Complain about a field being missing.
*
* @param string $name The name of the parameter
* @param ?boolean $posted Whether the parameter is a POST parameter (null: undetermined)
* @param array $array The array we're extracting parameters from
*/
function improperly_filled_in(string $name, ?bool $posted, array $array)
* Complain about a field being missing.
*
* @param string $name The name of the parameter
* @param ?boolean $posted Whether the parameter is a POST parameter (null: undetermined)
* @param array $array The array we're extracting parameters from
*/
function improperly_filled_in(string $name, ?bool $posted, array $array)

