for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FMCSSOClient;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
/**
* Register any application authentication / authorization services.
*
* @return void
*/
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../config/fmc-sso-client.php' => config_path('fmc-sso-client.php'),
], 'config');
$this->commands([
//
]);
}
$this->app->singleton(SSOClient::class, 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(SSOClient::class, 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 SSOClient(
config('services.fmc-sso.client_id', config('fmc-sso-client.client_id')),
config('services.fmc-sso.client_secret', config('fmc-sso-client.client_secret')),
config('services.fmc-sso.redirect_url', config('fmc-sso-client.redirect_url')),
config('services.fmc-sso.sso', config('fmc-sso-client.sso', [])),
config('services.fmc-sso.guzzle', config('fmc-sso-client.guzzle', [])),
);
});
public function register()
$this->mergeConfigFrom(__DIR__ . '/../config/fmc-sso-client.php', 'fmc-sso-client');
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.