Artem-Schander/L5Modular

View on GitHub
src/Facades/L5Modular.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace ArtemSchander\L5Modular\Facades;

use Illuminate\Support\Facades\Facade;

class L5Modular extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     *
     * @throws \RuntimeException
     */
    protected static function getFacadeAccessor()
    {
        return 'l5modular';
    }
}