blob: cedeb6ea3440c5deefe45951f989254296beec11 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Auth\Access;
4
5interface Authorizable
6{
7 /**
8 * Determine if the entity has a given ability.
9 *
10 * @param iterable|string $abilities
11 * @param array|mixed $arguments
12 * @return bool
13 */
14 public function can($abilities, $arguments = []);
15}