Gate.php 383 B

123456789101112131415161718192021
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. use Illuminate\Contracts\Auth\Access\Gate as GateContract;
  4. /**
  5. * @see \Illuminate\Contracts\Auth\Access\Gate
  6. */
  7. class Gate extends Facade
  8. {
  9. /**
  10. * Get the registered name of the component.
  11. *
  12. * @return string
  13. */
  14. protected static function getFacadeAccessor()
  15. {
  16. return GateContract::class;
  17. }
  18. }