1 <?php
2
3 namespace Skimia\ApiFusion\Facade;
4
5 use Illuminate\Support\Facades\Facade;
6
7 class RouteFusion extends Facade
8 {
9 /**
10 * Get the registered name of the component.
11 *
12 * @return string
13 */
14 protected static function getFacadeAccessor()
15 {
16 return 'api-fusion.route';
17 }
18 }
19