Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docblock #638

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/BouncerFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
* @method static \Illuminate\Contracts\Auth\Access\Gate gate()
* @method static bool usesCachedClipboard()
* @method static self define(string $ability, callable|string $callback)
* @method static \Illuminate\Auth\Access\Response authorize(string $ability, array|mixed $arguments)
* @method static bool can(string $ability, array|mixed $arguments)
* @method static bool canAny(array $abilities, array|mixed $arguments)
* @method static bool cannot(string $ability, array|mixed $arguments)
* @method static bool allows(string $ability, array|mixed $arguments)
* @method static bool denies(string $ability, array|mixed $arguments)
* @method static \Illuminate\Auth\Access\Response authorize(string $ability, array|mixed $arguments = [])
* @method static bool can(string $ability, array|mixed $arguments = [])
* @method static bool canAny(array $abilities, array|mixed $arguments = [])
* @method static bool cannot(string $ability, array|mixed $arguments = [])
* @method static bool allows(string $ability, array|mixed $arguments = [])
* @method static bool denies(string $ability, array|mixed $arguments = [])
* @method static \Silber\Bouncer\Database\Role role(array $attributes)
* @method static \Silber\Bouncer\Database\Ability ability(array $attributes)
* @method static self runBeforePolicies(bool $boolean)
Expand Down
Loading