The class TypeError does not exist. Did you forget a USE statement, or did you not list all dependencies?
Scrutinizer analyzes your composer.json/composer.lock file if available to
determine the classes, and functions that are defined by your dependencies.
It seems like the listed class was neither found in your dependencies, nor was it
found in the analyzed files in your repository. If you are using some other form
of dependency management, you might want to disable this analysis.
Loading history...
31
}
32
}
33
34
# Cast array of values
35
36
public function cast(array $data, bool $process_all = false) {
37
38
$cast = [];
39
40
foreach ($this->config as $name => $handler) {
41
42
if (!($isset = isset($data[$name])) && !$process_all) continue;
The class TypeError does not exist. Did you forget a USE statement, or did you not list all dependencies?
Scrutinizer analyzes your composer.json/composer.lock file if available to
determine the classes, and functions that are defined by your dependencies.
It seems like the listed class was neither found in your dependencies, nor was it
found in the analyzed files in your repository. If you are using some other form
of dependency management, you might want to disable this analysis.