for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sarahman\HttpRequestApiLog;
use Illuminate\Support\ServiceProvider;
class ServiceProviderForLaravelRecent extends ServiceProvider
{
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
$this->publishes([
__DIR__.'/config/config.php' => config_path('http-request-api-log.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/config.php' => /** @scrutinizer ignore-call */ config_path('http-request-api-log.php'),
]);
}
* Register the service provider.
public function register()
$app = $this->app;
$app
// merge default config
$this->mergeConfigFrom(
__DIR__.'/config/config.php',
'http-request-api-log'
);