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-09-29 15:41:13 +08:00
|
|
|
use Http\Handler\Client\Client;
|
|
|
|
|
use Http\Handler\Client\Curl;
|
2021-09-18 16:54:39 +08:00
|
|
|
use Http\Handler\Router;
|
2021-09-02 13:59:00 +08:00
|
|
|
use Server\Server;
|
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\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 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
|
|
|
|
|
*/
|
|
|
|
|
trait TraitApplication
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|