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
68
$this->/** @scrutinizer ignore-call */
69
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...
69
$this->commands(Commands\CacheCommand::class);
70
}
71
72
/**
73
* Register resources.
74
*
75
* @return void
76
*/
77
public function registerResources()
78
{
79
if ($this->isLumen() === false and function_exists('config_path')) {
80
// 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
82
$this->/** @scrutinizer ignore-call */
83
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.