spotonlive/sl-navigation

View on GitHub
src/SpotOnLive/Navigation/Facades/Helpers/NavigationHelperFacade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SpotOnLive\Navigation\Facades\Helpers;

use Illuminate\Support\Facades\Facade;

class NavigationHelperFacade extends Facade
{
    /**
     * Name of the binding container
     *
     * @return string
     */
    protected static function getFacadeAccessor()
    {
        return \SpotOnLive\Navigation\Helpers\NavigationHelper::class;
    }
}