This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
24
}
25
}
26
27
// Perform test with specific configuration.
28
$testCallback();
29
30
// Restore original config values.
31
foreach ($originalConfigValues as $class => $config) {
32
foreach ($config as $key => $value) {
33
Config::inst()->update($class, $key, $value);
34
}
35
}
36
}
37
38
public static function arrayChangeKeyCaseDeep(array $input, $case = null)
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.