for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ianrizky\MoslemPray;
use Illuminate\Contracts\Container\Container as ContainerContract;
use Illuminate\Support\ServiceProvider as BaseServiceProvider;
class ServiceProvider extends BaseServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
$this->publishes([
__DIR__ . '/../config/moslempray.php' => $this->app->configPath('moslempray.php'),
]);
}
* Register the application services.
public function register()
$this->app->bind(Manager::class, function (ContainerContract $app) {
return new Manager($app);
});