1 | <?php |
||
21 | final class UnsignedOctet implements Value |
||
22 | { |
||
23 | private static $definitionSet; |
||
24 | |||
25 | private $value; |
||
26 | private $original; |
||
27 | |||
28 | 26 | public function __construct(Integer $octet) |
|
37 | |||
38 | 11 | public static function fromString(Str $string): Value |
|
50 | |||
51 | 3 | public static function cut(Str $string): Str |
|
55 | |||
56 | 14 | public function original(): Integer |
|
60 | |||
61 | 20 | public function __toString(): string |
|
65 | |||
66 | 26 | public static function definitionSet(): Set |
|
73 | } |
||
74 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.