GrafiteInc/Builder

View on GitHub
src/Packages/Notifications/app/Facades/Notifications.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace {{App\}}Facades;

use Illuminate\Support\Facades\Facade;

class Notifications extends Facade
{
    /**
     * Create the Facade
     *
     * @return string
     */
    protected static function getFacadeAccessor() { return 'NotificationService'; }
}