for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CodeblogPro\GeoLocation;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function register()
parent::register();
}
public function boot()
$this->loadRoutesFrom(__DIR__ . '/routes/geo-location.php');
$this->publishes([
__DIR__ . '/config/geolocation.php' => config_path('geolocation.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/geolocation.php' => /** @scrutinizer ignore-call */ config_path('geolocation.php'),
'geolocation-config'
]);
$this->mergeConfigFrom(__DIR__ . '/config/geolocation.php', 'geolocation');