The variable $tab 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.
The variable $label 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...
14
15
$resolveValueCallback = function (Field $field) {
16
// We access the value property of the Option model
17
return $field->model->value;
18
};
19
20
$fillResourceCallback = function (Model $model, Request $request) {
21
// We need to replace the "." with an "_" because dot notation acts like array access
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.