Skip to content

Instantly share code, notes, and snippets.

@tournasdim
Created June 29, 2013 18:16
Show Gist options
  • Save tournasdim/5892113 to your computer and use it in GitHub Desktop.
Save tournasdim/5892113 to your computer and use it in GitHub Desktop.
A Laravel Facade (Laravel 4)
<?php namespace Tournasdim\Getgravatar\Facades;
use Illuminate\Support\Facades\Facade;
class Gravatar extends Facade {
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'gravatar' ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment