mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-30 16:42:38 +00:00
15 lines
185 B
PHP
15 lines
185 B
PHP
<?php
|
|
|
|
|
|
namespace permission\impl;
|
|
|
|
|
|
use permission\Permission;
|
|
|
|
class Visitor implements Permission
|
|
{
|
|
public static function check($plugin): bool
|
|
{
|
|
return true;
|
|
}
|
|
} |