Вход Регистрация
Файл: gapps/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Access/Gate.php
Строк: 71
<?php

namespace IlluminateContractsAuthAccess;

interface 
Gate
{
    
/**
     * Determine if a given ability has been defined.
     *
     * @param  string  $ability
     * @return bool
     */
    
public function has($ability);

    
/**
     * Define a new ability.
     *
     * @param  string  $ability
     * @param  callable|string  $callback
     * @return $this
     */
    
public function define($ability$callback);

    
/**
     * Define a policy class for a given class type.
     *
     * @param  string  $class
     * @param  string  $policy
     * @return $this
     */
    
public function policy($class$policy);

    
/**
     * Register a callback to run before all Gate checks.
     *
     * @param  callable  $callback
     * @return $this
     */
    
public function before(callable $callback);

    
/**
     * Determine if the given ability should be granted for the current user.
     *
     * @param  string  $ability
     * @param  array|mixed  $arguments
     * @return bool
     */
    
public function allows($ability$arguments = []);

    
/**
     * Determine if the given ability should be denied for the current user.
     *
     * @param  string  $ability
     * @param  array|mixed  $arguments
     * @return bool
     */
    
public function denies($ability$arguments = []);

    
/**
     * Determine if the given ability should be granted.
     *
     * @param  string  $ability
     * @param  array|mixed  $arguments
     * @return bool
     */
    
public function check($ability$arguments = []);

    
/**
     * Get a guard instance for the given user.
     *
     * @param  IlluminateContractsAuthAuthenticatable|mixed  $user
     * @return static
     */
    
public function forUser($user);
}
Онлайн: 3
Реклама