Skip to content

Instantly share code, notes, and snippets.

@YOzaz
Created October 13, 2015 15:19
Show Gist options
  • Save YOzaz/e9306439f06d7b7be80d to your computer and use it in GitHub Desktop.
Save YOzaz/e9306439f06d7b7be80d to your computer and use it in GitHub Desktop.
<?php namespace MyApp\Utils\MailChimp;
use Illuminate\Support\ServiceProvider;
/**
* Register our Services with Laravel
*/
class MailChimpServiceProvider extends ServiceProvider
{
protected function register()
{
$this->app->bind( 'mailchimpService', MailChimpService::class );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment