Created
October 13, 2015 15:19
-
-
Save YOzaz/e9306439f06d7b7be80d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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