for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Muzzle;
use Illuminate\Support\ServiceProvider;
class MuzzleProvider extends ServiceProvider
{
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../config/config.php' => config_path('muzzle.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('muzzle.php'),
]);
}
public function register()
$this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'muzzle');
ResponseBuilder::setFixtureDirectory($this->app['config']->get('muzzle.fixture_path'));