for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Soumairi\DomainChecker;
use Illuminate\Support\ServiceProvider;
class DomainCheckerServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
//
}
* Bootstrap services.
public function boot()
$this->mergeConfigFrom(__DIR__ . '/config/domain-checker.php', 'domain-checker');
$this->publishes([
__DIR__.'/config/domain-checker.php' => config_path('domain-checker.php')
config_path
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
__DIR__.'/config/domain-checker.php' => /** @scrutinizer ignore-call */ config_path('domain-checker.php')
]);