Files
kiri-core/core/Abstracts/TraitApplication.php
T
as2252258@163.com f052cf1fbf 111
2021-08-28 00:51:27 +08:00

46 lines
950 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 Http\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
{
}