Implemented Tamer & Cache Drivers (WIP)
This commit is contained in:
parent
26f0f31cc6
commit
d346c4d23d
39 changed files with 2211 additions and 913 deletions
22
src/FederationLib/Enums/CommandApplets.php
Normal file
22
src/FederationLib/Enums/CommandApplets.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace FederationLib\Enums;
|
||||
|
||||
use FederationLib\Classes\CommandApplets\DateCommand;
|
||||
use FederationLib\Classes\CommandApplets\HostnameCommand;
|
||||
use FederationLib\Classes\CommandApplets\WhoamiCommand;
|
||||
|
||||
final class CommandApplets
|
||||
{
|
||||
const WHOAMI = [WhoamiCommand::class, 'whoami'];
|
||||
|
||||
const HOSTNAME = [HostnameCommand::class, 'hostname'];
|
||||
|
||||
const DATE = [DateCommand::class, 'date'];
|
||||
|
||||
const ALL = [
|
||||
self::WHOAMI,
|
||||
self::HOSTNAME,
|
||||
self::DATE
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue