for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\ShortUrl;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function boot()
$this->publishes([
__DIR__ . '/../config/settings.php' => $this->app->configPath('short_url.php'),
], 'config');
$this->loadMigrationsFrom(
__DIR__ . '/../database/migrations'
);
$this->loadRoutesFrom(
__DIR__ . '/../routes/web.php'
}
public function register()
$this->mergeConfigFrom(
__DIR__ . '/../config/settings.php',
'short_url'