Files
kiri-core/core/Abstracts/TraitApplication.php
T

45 lines
908 B
PHP
Raw Normal View History

2021-02-08 17:01:03 +08:00
<?php
2021-08-11 01:04:57 +08:00
namespace Kiri\Abstracts;
2021-02-08 17:01:03 +08:00
use Annotation\Annotation as SAnnotation;
2021-09-06 17:59:12 +08:00
use Database\Connection;
2021-02-08 17:01:03 +08:00
use Database\DatabasesProviders;
2021-08-17 16:43:50 +08:00
use Http\Client\Client;
use Http\Client\Curl;
use Http\HttpFilter;
use Http\Route\Router;
2021-09-02 13:59:00 +08:00
use Server\Server;
2021-08-17 16:43:50 +08:00
use Http\Shutdown;
2021-08-13 14:13:56 +08:00
use Kiri\Crontab\Producer;
2021-08-11 01:04:57 +08:00
use Kiri\Async;
use Kiri\Cache\Redis;
use Kiri\Error\Logger;
use Kiri\Jwt\Jwt;
2021-02-08 17:01:03 +08:00
/**
* Trait TraitApplication
2021-08-11 01:04:57 +08:00
* @package Kiri\Abstracts
2021-02-08 17:01:03 +08:00
* @property Router $router
* @property \Redis|Redis $redis
* @property Server $server
* @property DatabasesProviders $db
* @property Async $async
* @property Logger $logger
* @property Jwt $jwt
2021-04-02 18:40:50 +08:00
* @property SAnnotation $annotation
2021-02-08 17:01:03 +08:00
* @property BaseGoto $goto
* @property Client $client
2021-09-06 17:59:12 +08:00
* @property Connection $databases
2021-02-08 17:01:03 +08:00
* @property Curl $curl
2021-08-13 14:13:56 +08:00
* @property Producer $crontab
2021-03-19 17:47:41 +08:00
* @property HttpFilter $filter
2021-03-28 16:09:18 +08:00
* @property Shutdown $shutdown
2021-02-08 17:01:03 +08:00
*/
trait TraitApplication
{
}