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

File "TransientToken.php"

Full Path: /home/u735268861/domains/palsarh.in/public_html/vendor/laravel/sanctum/src/TransientToken.php
File size: 525 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Sanctum;

use Laravel\Sanctum\Contracts\HasAbilities;

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

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