File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
// phpcs:ignoreFile
3
- // @phpstan-ignore classConstant.nativeTypeNotSupported
4
3
namespace Gt \Dom ;
5
4
6
5
use DOMNode ;
@@ -30,12 +29,12 @@ class Node84 extends DOMNode {
30
29
const TYPE_ENTITY_DECL = XML_ENTITY_DECL_NODE ;
31
30
const TYPE_NAMESPACE_DECL = XML_NAMESPACE_DECL_NODE ;
32
31
33
- public const int DOCUMENT_POSITION_DISCONNECTED = 0b000001 ;
34
- public const int DOCUMENT_POSITION_PRECEDING = 0b000010 ;
35
- public const int DOCUMENT_POSITION_FOLLOWING = 0b000100 ;
36
- public const int DOCUMENT_POSITION_CONTAINS = 0b001000 ;
37
- public const int DOCUMENT_POSITION_CONTAINED_BY = 0b010000 ;
38
- public const int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0b100000 ;
32
+ public const int DOCUMENT_POSITION_DISCONNECTED = 0b000001 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
33
+ public const int DOCUMENT_POSITION_PRECEDING = 0b000010 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
34
+ public const int DOCUMENT_POSITION_FOLLOWING = 0b000100 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
35
+ public const int DOCUMENT_POSITION_CONTAINS = 0b001000 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
36
+ public const int DOCUMENT_POSITION_CONTAINED_BY = 0b010000 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
37
+ public const int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0b100000 ; // @phpstan-ignore classConstant.nativeTypeNotSupported
39
38
40
39
private function __construct () {}
41
40
}
You can’t perform that action at this time.
0 commit comments