mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 00:01:00 +08:00
14 lines
205 B
PHP
14 lines
205 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Laravel\Passport\Client;
|
|
|
|
class OauthClient extends Client
|
|
{
|
|
public function skipsAuthorization(): bool
|
|
{
|
|
return (bool)$this->skips_authorization;
|
|
}
|
|
}
|