The variable $description 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...
18
}
19
return $values;
20
}
21
22
/**
23
* Converts dot notation names to arrays and sets the value at the right depth
24
*
25
* @param string $name
26
* @param mixed $value
27
* @param array $values The array that holds the result
28
* @return void
29
*/
30
protected function cleanValueFrom($name, $value, array &$values = [])
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.