mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
17 lines
264 B
PHP
17 lines
264 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Scope;
|
|
|
|
class GlobalScope extends Scope
|
|
{
|
|
/**
|
|
* Determine if the provided scope is within this scope.
|
|
*/
|
|
public function isWithinScope(Scope $scope): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|