1 | <?php |
||
8 | class MissingOrInvalidInputData extends \InvalidArgumentException |
||
9 | { |
||
10 | private $inputDataKeys = []; |
||
11 | private $requiredDataKeys = []; |
||
12 | |||
13 | public function __construct($grantTypeIdentifier, array $inputDataKeys, array $requiredDataKeys) |
||
25 | |||
26 | public function getRequiredDataKeys() |
||
30 | |||
31 | public function getInputDataKeys() |
||
35 | } |
||
36 |