Implemented Tamer & Cache Drivers (WIP)
This commit is contained in:
parent
26f0f31cc6
commit
d346c4d23d
39 changed files with 2211 additions and 913 deletions
24
src/FederationLib/Enums/Standard/Methods.php
Normal file
24
src/FederationLib/Enums/Standard/Methods.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
namespace FederationLib\Enums\Standard;
|
||||
|
||||
final class Methods
|
||||
{
|
||||
public const PING = 'ping';
|
||||
public const WHOAMI = 'whoami';
|
||||
|
||||
public const CREATE_CLIENT = 'create_client';
|
||||
public const GET_CLIENT = 'get_client';
|
||||
public const CHANGE_CLIENT_NAME = 'change_client_name';
|
||||
public const CHANGE_CLIENT_DESCRIPTION = 'change_client_description';
|
||||
|
||||
public const ALL = [
|
||||
self::PING,
|
||||
self::WHOAMI,
|
||||
|
||||
self::CREATE_CLIENT,
|
||||
self::GET_CLIENT,
|
||||
self::CHANGE_CLIENT_NAME,
|
||||
self::CHANGE_CLIENT_DESCRIPTION
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue