| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function __construct( |
||
| 27 | string $binding, |
||
| 28 | string $location, |
||
| 29 | ?string $unused = null, |
||
| 30 | ?array $attributes = null |
||
| 31 | ) { |
||
| 32 | Assert::null( |
||
| 33 | $unused, |
||
| 34 | 'The \'ResponseLocation\' attribute must be omitted for md:NameIDMappingService.' |
||
| 35 | ); |
||
| 36 | parent::__construct($binding, $location, null, $attributes); |
||
| 37 | } |
||
| 39 |