| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class FaultString extends AbstractElement |
||
| 16 | { |
||
| 17 | use StringElementTrait; |
||
| 18 | |||
| 19 | /** @var string */ |
||
| 20 | public const LOCALNAME = 'faultstring'; |
||
| 21 | |||
| 22 | /** @var null */ |
||
| 23 | public const NS = null; |
||
| 24 | |||
| 25 | /** @var null */ |
||
| 26 | public const NS_PREFIX = null; |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * Initialize an faultstring |
||
| 31 | * |
||
| 32 | * @param string $faultString |
||
| 33 | */ |
||
| 34 | public function __construct(string $faultString) |
||
| 39 |