| 1 | <?php |
||
| 14 | final class FilterResponse |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param array $filteredValue The input values after being filtered. |
||
| 18 | * @param array $errors Any errors encountered during the filter process. |
||
| 19 | * @param array $unknowns The values that were unknown during filtering. |
||
| 20 | */ |
||
| 21 | public function __construct( |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Converts the response to an array. |
||
| 35 | * |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public function toArray() : array |
||
| 49 | } |
||
| 50 |