Issues (341)

src/XMLSchema/XML/FractionDigits.php (1 issue)

Labels
Severity
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
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 21 at column 24
Loading history...
22
}
23