The variable $buffer does not exist. Did you forget to declare it?
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.
Loading history...
21
"Not enough data to decode: expected length bytes ${expectedLength}, got ${actualLength}"
22
);
23
}
24
25
public function getValue()
26
{
27
return $this->value;
28
}
29
30
private function __construct($value, string $message)
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.