A-Lawrence/laravel-aircraft-registrations

View on GitHub
src/Facade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace ALawrence\LaravelAircraftRegistration\Facades;

use Illuminate\Support\Facades\Facade as BaseFacade;

class Facade extends BaseFacade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     * @throws \RuntimeException
     */
    protected static function getFacadeAccessor()
    {
        return "aircraft-registration";
    }
}