| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct($paramName, $fieldKey, $fieldName) |
||
| 23 | { |
||
| 24 | parent::__construct( |
||
| 25 | 'Invalid Parameter', |
||
| 26 | sprintf('Parameter member `%s` not supported.', $paramName), |
||
| 27 | 'bad_request' |
||
| 28 | ); |
||
| 29 | |||
| 30 | $this->setSource('parameter', sprintf('%s[%s]', $fieldName, $fieldKey)); |
||
| 31 | } |
||
| 32 | } |
||
| 33 |