The method commands() does not exist on Hayrullah\Helpers\HelperServiceProvider.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
60
$this->/** @scrutinizer ignore-call */
61
commands(Commands\ClearCommand::class);
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...
61
$this->commands(Commands\CacheCommand::class);
62
}
63
64
/**
65
* Register resources.
66
*
67
* @return void
68
*/
69
public function registerResources()
70
{
71
if ($this->isLumen() === false and function_exists('config_path')) {
72
// function not available and 'publish' not relevant in Lumen
The method publishes() does not exist on Hayrullah\Helpers\HelperServiceProvider.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
74
$this->/** @scrutinizer ignore-call */
75
publishes(
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.
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.