Files
kiri-core/core/Abstracts/TraitApplication.php
T
2021-09-02 13:59:00 +08:00

46 lines
952 B
PHP

<?php
namespace Kiri\Abstracts;
use Annotation\Annotation as SAnnotation;
use Database\DatabasesProviders;
use Http\Client\Client;
use Http\Client\Curl;
use Http\Context\Response;
use Http\HttpFilter;
use Http\Route\Router;
use Server\Server;
use Http\Shutdown;
use Kiri\Crontab\Producer;
use Kiri\Async;
use Kiri\Cache\Redis;
use Kiri\Error\Logger;
use Kiri\Jwt\Jwt;
/**
* Trait TraitApplication
* @package Kiri\Abstracts
* @property Router $router
* @property \Redis|Redis $redis
* @property Server $server
* @property Response $response
* @property DatabasesProviders $db
* @property Async $async
* @property Logger $logger
* @property Jwt $jwt
* @property SAnnotation $annotation
* @property BaseGoto $goto
* @property Client $client
* @property \Database\Connection $databases
* @property Curl $curl
* @property Producer $crontab
* @property HttpFilter $filter
* @property Shutdown $shutdown
*/
trait TraitApplication
{
}