for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace shweshi\LaravelUnsplashWrapper\Providers;
use Illuminate\Support\ServiceProvider;
class UnsplashServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
$this->publishes([
__DIR__.'/../config/unsplash.php' => config_path('unsplash.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/unsplash.php' => /** @scrutinizer ignore-call */ config_path('unsplash.php'),
]);
}