| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct(?string $message = null) |
||
| 18 | { |
||
| 19 | if ($message === null) { |
||
| 20 | if (defined('static::DEFAULT_MESSAGE')) { |
||
| 21 | $message = static::DEFAULT_MESSAGE; |
||
| 22 | } else { |
||
| 23 | $message = 'A violation of the XML Signature Syntax and Processing specification occurred.'; |
||
| 24 | } |
||
| 25 | } |
||
| 26 | |||
| 27 | parent::__construct($message); |
||
| 28 | } |
||
| 30 |