JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "HasAbilities.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/vendor/laravel/sanctum/src/Contracts/HasAbilities.php
File size: 403 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Sanctum\Contracts;

interface HasAbilities
{
    /**
     * Determine if the token has a given ability.
     *
     * @param  string  $ability
     * @return bool
     */
    public function can($ability);

    /**
     * Determine if the token is missing a given ability.
     *
     * @param  string  $ability
     * @return bool
     */
    public function cant($ability);
}