1: <?php namespace Laravella\Crud\Facades;
2:
3: /**
4: * Description of Db
5: *
6: * @author Victor
7: */
8:
9: use Illuminate\Support\Facades\Facade;
10:
11: class DbGopher extends Facade {
12:
13: /**
14: * Get the registered name of the component.
15: *
16: * @return string
17: */
18: protected static function getFacadeAccessor()
19: {
20: return 'dbgopher';
21: }
22:
23: }
24:
25: ?>
26: