for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AbuSalam;
use Illuminate\Support\ServiceProvider;
/**
* Bootstrap SMS Gateway Services
*/
class SmsGatewayServiceProvider extends ServiceProvider
{
* Bootstrap any application services.
*
* @return void
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/config.php' => config_path('smsgateway.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('smsgateway.php'),
], 'config');
/*
$this->loadViewsFrom(__DIR__.'/../resources/views', 'skeleton');
__DIR__.'/../resources/views' => base_path('resources/views/vendor/skeleton'),
], 'views');
}
* Register any application services.
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'smsgateway');