simplesamlphp /
xml-common
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\XMLSchema\XML; |
||
| 6 | |||
| 7 | use SimpleSAML\XML\SchemaValidatableElementInterface; |
||
| 8 | use SimpleSAML\XML\SchemaValidatableElementTrait; |
||
| 9 | use SimpleSAML\XMLSchema\XML\Interface\FacetInterface; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Class representing the fractionDigits element |
||
| 13 | * |
||
| 14 | * @package simplesamlphp/xml-common |
||
| 15 | */ |
||
| 16 | final class FractionDigits extends AbstractNumFacet implements SchemaValidatableElementInterface, FacetInterface |
||
| 17 | { |
||
| 18 | use SchemaValidatableElementTrait; |
||
| 19 | |||
| 20 | |||
| 21 | public const string LOCALNAME = 'fractionDigits'; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 22 | } |
||
| 23 |