| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function __construct( |
||
| 34 | SAMLAnyURIValue $binding, |
||
| 35 | SAMLAnyURIValue $location, |
||
| 36 | ?SAMLAnyURIValue $unused = null, |
||
| 37 | array $attributes = [], |
||
| 38 | ) { |
||
| 39 | Assert::null( |
||
| 40 | $unused, |
||
| 41 | 'The \'ResponseLocation\' attribute must be omitted for md:NameIDMappingService.', |
||
| 42 | ); |
||
| 43 | |||
| 44 | parent::__construct($binding, $location, null, $attributes); |
||
| 45 | } |
||
| 47 |