Skip to content

Instantly share code, notes, and snippets.

@ziyahan
Created May 25, 2016 19:11
Show Gist options
  • Save ziyahan/66bebaac786dbfd500fd7d4241722308 to your computer and use it in GitHub Desktop.
Save ziyahan/66bebaac786dbfd500fd7d4241722308 to your computer and use it in GitHub Desktop.
<?php namespace App\Providers\ZendAcl\Facades;
use Illuminate\Support\Facades\Facade;
class Acl extends Facade {
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() {
return "Acl";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment