1 | <?php |
||
5 | class ParameterManager |
||
6 | { |
||
7 | /** Canonical name for field in additional request parameters containing the list of additional sub-objects */ |
||
8 | const SCOPE_INCLUDE = 'include'; |
||
9 | |||
10 | protected static function parameterExists($params, $scope, $key) |
||
14 | |||
15 | protected static function parameterValueExists($params, $scope, $value) |
||
19 | |||
20 | protected static function getParameterValue($params, $scope, $key, $defaultValue = null) { |
||
26 | |||
27 | protected static function consumeParameterValue($params, $scope, $value) |
||
34 | |||
35 | protected static function scopeExists($params, $scope) |
||
39 | |||
40 | protected static function getScope($params, $scope, $defaultValue = null) |
||
47 | } |