Skip to content

Instantly share code, notes, and snippets.

@YOzaz
Created October 13, 2015 15:16
Show Gist options
  • Save YOzaz/62b90cd658d68c75b42a to your computer and use it in GitHub Desktop.
Save YOzaz/62b90cd658d68c75b42a to your computer and use it in GitHub Desktop.
<?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