File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1616 */
1717abstract class AbstractAnySimpleType implements ValueTypeInterface
1818{
19- /** @var string */
20- public const SCHEMA_TYPE = 'anySimpleType ' ;
19+ public const string SCHEMA_TYPE = 'anySimpleType ' ;
2120
22- /** @var string */
23- public const SCHEMA_NAMESPACEURI = 'http://www.w3.org/2001/XMLSchema ' ;
21+ public const string SCHEMA_NAMESPACEURI = 'http://www.w3.org/2001/XMLSchema ' ;
2422
25- /** @var string */
26- public const SCHEMA_NAMESPACE_PREFIX = 'xs ' ;
23+ public const string SCHEMA_NAMESPACE_PREFIX = 'xs ' ;
2724
2825
2926 /**
Original file line number Diff line number Diff line change 66
77final class NS
88{
9- public const ANY = '##any ' ;
9+ public const string ANY = '##any ' ;
1010
11- public const LOCAL = '##local ' ;
11+ public const string LOCAL = '##local ' ;
1212
13- public const OTHER = '##other ' ;
13+ public const string OTHER = '##other ' ;
1414
15- public const TARGETNAMESPACE = '##targetNamespace ' ;
15+ public const string TARGETNAMESPACE = '##targetNamespace ' ;
1616
1717
1818 /** @var string[] */
You can’t perform that action at this time.
0 commit comments