Просмотр файла vendor/illuminate/support/Facades/Gate.php

Размер файла: 343B
<?php

namespace Illuminate\Support\Facades;

/**
 * @see \Illuminate\Contracts\Auth\Access\Gate
 */
class Gate extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor()
    {
        return 'Illuminate\Contracts\Auth\Access\Gate';
    }
}