for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chuckbe\Chuckcms\Providers;
use Illuminate\Support\ServiceProvider;
class ChuckServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
//
}
* Register the application services.
public function register()
$this->app->bind('Chuck', function () {
return new \Chuckbe\Chuckcms\Chuck\Accessors\Chuck();
});