We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3680d24 commit c56807fCopy full SHA for c56807f
src/Tag.php
@@ -67,7 +67,7 @@ final class Operation
67
public const LOCATE = 0x00000008;
68
public const ACTIVATE = 0x00000012;
69
public const DESTROY = 0x00000014;
70
- public const CHECK = 0x0000001C;
+ public const CHECK = 0x00000009;
71
}
72
73
final class ObjectType
tests/TagTest.php
@@ -97,7 +97,7 @@ public function testOperationDestroy(): void
97
98
public function testOperationCheck(): void
99
{
100
- $this->assertSame(0x0000001C, Operation::CHECK);
+ $this->assertSame(0x00000009, Operation::CHECK);
101
102
103
public function testOperationNoDuplicateValues(): void
0 commit comments