| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function __construct( |
||
| 29 | int $index, |
||
| 30 | string $binding, |
||
| 31 | string $location, |
||
| 32 | ?bool $isDefault = null, |
||
| 33 | ?string $unused = null, |
||
| 34 | ?array $attributes = null |
||
| 35 | ) { |
||
| 36 | Assert::null( |
||
| 37 | $unused, |
||
| 38 | 'The \'ResponseLocation\' attribute must be omitted for md:ArtifactResolutionService.' |
||
| 39 | ); |
||
| 40 | parent::__construct($index, $binding, $location, $isDefault, null, $attributes); |
||
| 41 | } |
||
| 43 |