Created
October 13, 2015 15:16
-
-
Save YOzaz/62b90cd658d68c75b42a 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\Facades\Facade; | |
/** | |
* Facade class to be called whenever the class UserService is called | |
*/ | |
class MailChimpFacade extends Facade { | |
/** | |
* @return string | |
*/ | |
protected static function getFacadeAccessor() { return 'mailchimpService'; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment