for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AdDirector;
use AdDirector\GPT\AdGPT;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../config/ad-director.php' => config_path('ad-director.php'),
], 'config');
__DIR__.'/../resources/views' => resource_path('views/vendor/ad-director'),
], 'views');
$this->commands([
//
]);
}
$this->loadViewsFrom(__DIR__.'/../resources/views', 'ad-director');
$this->app->singleton('ad-gpt-manager', function ($app) {
$app
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
$this->app->singleton('ad-gpt-manager', function (/** @scrutinizer ignore-unused */ $app) {
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
return new AdGPT();
});
$this->app->singleton('ad-director', function ($app) {
$this->app->singleton('ad-director', function (/** @scrutinizer ignore-unused */ $app) {
return new AdDirector();
/**
* @inheritDoc
*/
public function register()
$this->mergeConfigFrom(__DIR__ . '/../config/ad-director.php', 'ad-director');
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.