class InvalidConfig extends Logic implements ErrorThe configuration does not match the expected format.
$config = [
'url' => 'http://example.com',
'method' => 'get',
'timeout' => [1, 2, 3],
];
$crawler = new Crawler($config); // Crawler config has an invalid format: "timeout must be a number"$configName- the config name$errorMessage- the error message
getConfigName():stringgetErrorMessage():string