1 | <?php |
||
13 | final class SignedLongLongInteger implements Value |
||
14 | { |
||
15 | private $value; |
||
16 | private $original; |
||
17 | |||
18 | 13 | public function __construct(Integer $value) |
|
23 | |||
24 | 7 | public static function fromString(Str $string): Value |
|
36 | |||
37 | 6 | public static function cut(Str $string): Str |
|
41 | |||
42 | 12 | public function original(): Integer |
|
46 | |||
47 | 12 | public function __toString(): string |
|
51 | } |
||
52 |
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.