Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5bf8a7feb1 | |||
| 52d26c4481 | |||
| dd369d348c | |||
| 547bb85ba9 | |||
| 4ddcc87263 | |||
| 31a6862d62 | |||
| 6e1d1a300a | |||
| e260e43c17 | |||
| 76292522e4 | |||
| 7eb6151111 |
+38
-7
@@ -11,6 +11,7 @@ namespace Database;
|
|||||||
|
|
||||||
use Database\Traits\QueryTrait;
|
use Database\Traits\QueryTrait;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -63,8 +64,8 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function clear()
|
public function clear()
|
||||||
{
|
{
|
||||||
$this->db = null;
|
$this->db = NULL;
|
||||||
$this->useCache = false;
|
$this->useCache = FALSE;
|
||||||
$this->with = [];
|
$this->with = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,6 +80,36 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $size
|
||||||
|
* @param int $page
|
||||||
|
* @return array
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
#[ArrayShape(['code' => "int", 'message' => "string", 'size' => "mixed", 'page' => "mixed", 'count' => "int", 'next' => "mixed", 'prev' => "mixed", 'param' => "array"])]
|
||||||
|
public function pagination(int $size = 20, int $page = 1): array
|
||||||
|
{
|
||||||
|
$page = max(1, $page);
|
||||||
|
$size = max(1, $size);
|
||||||
|
|
||||||
|
$offset = ($page - 1) * $size;
|
||||||
|
|
||||||
|
$count = $this->count();
|
||||||
|
$lists = $this->limit($offset, $size)->get()->toArray();
|
||||||
|
return [
|
||||||
|
'code' => 0,
|
||||||
|
'message' => 'ok',
|
||||||
|
'size' => $size,
|
||||||
|
'page' => $page,
|
||||||
|
'count' => $count,
|
||||||
|
'next' => max($page + 1, 1),
|
||||||
|
'prev' => max($page - 1, 1),
|
||||||
|
'param' => $lists,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $values
|
* @param array $values
|
||||||
* @return $this
|
* @return $this
|
||||||
@@ -198,7 +229,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
public function all(): Collection|array
|
public function all(): Collection|array
|
||||||
{
|
{
|
||||||
$data = $this->execute($this->builder->all())->all();
|
$data = $this->execute($this->builder->all())->all();
|
||||||
if (!empty($this->with)){
|
if (!empty($this->with)) {
|
||||||
$this->getWith($this->modelClass);
|
$this->getWith($this->modelClass);
|
||||||
}
|
}
|
||||||
$collect = new Collection($this, $data, $this->modelClass);
|
$collect = new Collection($this, $data, $this->modelClass);
|
||||||
@@ -266,7 +297,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function batchInsert(array $data): bool
|
public function batchInsert(array $data): bool
|
||||||
{
|
{
|
||||||
[$sql, $params] = $this->builder->insert($data, true);
|
[$sql, $params] = $this->builder->insert($data, TRUE);
|
||||||
|
|
||||||
|
|
||||||
return $this->execute($sql, $params)->exec();
|
return $this->execute($sql, $params)->exec();
|
||||||
@@ -280,7 +311,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
*/
|
*/
|
||||||
public function value($filed)
|
public function value($filed)
|
||||||
{
|
{
|
||||||
return $this->first()[$filed] ?? null;
|
return $this->first()[$filed] ?? NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -298,10 +329,10 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
* @return int|bool|string|null
|
* @return int|bool|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function delete(bool $getSql = false): int|bool|string|null
|
public function delete(bool $getSql = FALSE): int|bool|string|null
|
||||||
{
|
{
|
||||||
$sql = $this->builder->delete();
|
$sql = $this->builder->delete();
|
||||||
if ($getSql === false) {
|
if ($getSql === FALSE) {
|
||||||
return $this->execute($sql)->delete();
|
return $this->execute($sql)->delete();
|
||||||
}
|
}
|
||||||
return $sql;
|
return $sql;
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ use Kiri\ToArray;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
use ReturnTypeWillChange;
|
||||||
use Traversable;
|
use Traversable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -91,7 +92,7 @@ abstract class AbstractCollection extends Component implements \IteratorAggregat
|
|||||||
*/
|
*/
|
||||||
public function addItem($item)
|
public function addItem($item)
|
||||||
{
|
{
|
||||||
array_push($this->_item, $item);
|
$this->_item[] = $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -143,7 +144,7 @@ abstract class AbstractCollection extends Component implements \IteratorAggregat
|
|||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
*/
|
*/
|
||||||
public function offsetSet(mixed $offset, mixed $value)
|
#[ReturnTypeWillChange] public function offsetSet(mixed $offset, mixed $value)
|
||||||
{
|
{
|
||||||
$this->_item[$offset] = $value;
|
$this->_item[$offset] = $value;
|
||||||
}
|
}
|
||||||
@@ -152,7 +153,7 @@ abstract class AbstractCollection extends Component implements \IteratorAggregat
|
|||||||
/**
|
/**
|
||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
*/
|
*/
|
||||||
public function offsetUnset(mixed $offset)
|
#[ReturnTypeWillChange] public function offsetUnset(mixed $offset)
|
||||||
{
|
{
|
||||||
if ($this->offsetExists($offset)) {
|
if ($this->offsetExists($offset)) {
|
||||||
unset($this->_item[$offset]);
|
unset($this->_item[$offset]);
|
||||||
|
|||||||
+31
-29
@@ -33,6 +33,7 @@ use Kiri\Exception\NotFindClassException;
|
|||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Kiri\ToArray;
|
use Kiri\ToArray;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
|
use ReturnTypeWillChange;
|
||||||
use validator\Validator;
|
use validator\Validator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -263,13 +264,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function hasPrimary(): bool
|
public function hasPrimary(): bool
|
||||||
{
|
{
|
||||||
if ($this->primary !== NULL) {
|
if ($this->primary !== NULL) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
$primary = $this->getColumns()->getPrimaryKeys();
|
$primary = $this->getColumns()->getPrimaryKeys();
|
||||||
if (!empty($primary)) {
|
if (!empty($primary)) {
|
||||||
return $this->primary = is_array($primary) ? current($primary) : $primary;
|
return $this->primary = is_array($primary) ? current($primary) : $primary;
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -278,7 +279,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function isAutoIncrement(): bool
|
public function isAutoIncrement(): bool
|
||||||
{
|
{
|
||||||
return $this->getAutoIncrement() !== null;
|
return $this->getAutoIncrement() !== NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -296,7 +297,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function getPrimary(): ?string
|
public function getPrimary(): ?string
|
||||||
{
|
{
|
||||||
if (!$this->hasPrimary()) {
|
if (!$this->hasPrimary()) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $this->primary;
|
return $this->primary;
|
||||||
}
|
}
|
||||||
@@ -308,7 +309,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public function getPrimaryValue(): ?int
|
public function getPrimaryValue(): ?int
|
||||||
{
|
{
|
||||||
if (!$this->hasPrimary()) {
|
if (!$this->hasPrimary()) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $this->getAttribute($this->primary);
|
return $this->getAttribute($this->primary);
|
||||||
}
|
}
|
||||||
@@ -324,7 +325,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
public static function findOne($param, $db = NULL): static|null
|
public static function findOne($param, $db = NULL): static|null
|
||||||
{
|
{
|
||||||
if (is_bool($param)) {
|
if (is_bool($param)) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (is_numeric($param)) {
|
if (is_numeric($param)) {
|
||||||
$param = static::getPrimaryCondition($param);
|
$param = static::getPrimaryCondition($param);
|
||||||
@@ -357,7 +358,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function max($field = null): ?ModelInterface
|
public static function max($field = NULL): ?ModelInterface
|
||||||
{
|
{
|
||||||
$columns = static::makeNewInstance()->getColumns();
|
$columns = static::makeNewInstance()->getColumns();
|
||||||
if (empty($field)) {
|
if (empty($field)) {
|
||||||
@@ -365,11 +366,11 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
}
|
}
|
||||||
$columns = $columns->get_fields();
|
$columns = $columns->get_fields();
|
||||||
if (!isset($columns[$field])) {
|
if (!isset($columns[$field])) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
$first = static::query()->max($field)->first();
|
$first = static::query()->max($field)->first();
|
||||||
if (empty($first)) {
|
if (empty($first)) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
return $first[$field];
|
return $first[$field];
|
||||||
}
|
}
|
||||||
@@ -441,11 +442,11 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @return bool
|
* @return bool
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
protected static function deleteByCondition($condition = NULL, array $attributes = [], bool $if_condition_is_null = false): bool
|
protected static function deleteByCondition($condition = NULL, array $attributes = [], bool $if_condition_is_null = FALSE): bool
|
||||||
{
|
{
|
||||||
if (empty($condition)) {
|
if (empty($condition)) {
|
||||||
if (!$if_condition_is_null) {
|
if (!$if_condition_is_null) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return (bool)static::query()->delete();
|
return (bool)static::query()->delete();
|
||||||
}
|
}
|
||||||
@@ -539,7 +540,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
||||||
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
||||||
|
|
||||||
$lastId = $dbConnection->save(true);
|
$lastId = $dbConnection->save(TRUE);
|
||||||
|
|
||||||
$lastId = $this->setPrimary((int)$lastId, $param);
|
$lastId = $this->setPrimary((int)$lastId, $param);
|
||||||
|
|
||||||
@@ -584,7 +585,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
private function updateInternal($fields, $condition, $param): bool|static
|
private function updateInternal($fields, $condition, $param): bool|static
|
||||||
{
|
{
|
||||||
if (empty($param)) {
|
if (empty($param)) {
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
if ($this->hasPrimary()) {
|
if ($this->hasPrimary()) {
|
||||||
$condition = [$this->getPrimary() => $this->getPrimaryValue()];
|
$condition = [$this->getPrimary() => $this->getPrimaryValue()];
|
||||||
@@ -594,10 +595,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
return $generate;
|
return $generate;
|
||||||
}
|
}
|
||||||
$command = $this->getConnection()->createCommand($generate[0], $generate[1]);
|
$command = $this->getConnection()->createCommand($generate[0], $generate[1]);
|
||||||
if ($command->save(false, $this)) {
|
if ($command->save(FALSE, $this)) {
|
||||||
return $this->refresh()->afterSave($fields, $param);
|
return $this->refresh()->afterSave($fields, $param);
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -611,14 +612,15 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$this->_attributes = merge($this->_attributes, $data);
|
$this->_attributes = merge($this->_attributes, $data);
|
||||||
}
|
}
|
||||||
if (!$this->validator($this->rules()) || !$this->beforeSave($this)) {
|
if (!$this->validator($this->rules()) || !$this->beforeSave($this)) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
[$change, $condition, $fields] = $this->separation();
|
[$change, $condition, $fields] = $this->separation();
|
||||||
if (!$this->isNewExample) {
|
if (!empty($this->_oldAttributes)) {
|
||||||
return $this->updateInternal($fields, $condition, $change);
|
return $this->updateInternal($fields, $condition, $change);
|
||||||
}
|
} else {
|
||||||
return $this->insert($change, $fields);
|
return $this->insert($change, $fields);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -641,10 +643,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function validator(?array $rule): bool
|
public function validator(?array $rule): bool
|
||||||
{
|
{
|
||||||
if (empty($rule)) return true;
|
if (empty($rule)) return TRUE;
|
||||||
$validate = $this->resolve($rule);
|
$validate = $this->resolve($rule);
|
||||||
if (!$validate->validation()) {
|
if (!$validate->validation()) {
|
||||||
return $this->addError('$validate->getError()', 'mysql');
|
return $this->addError($validate->getError(), 'mysql');
|
||||||
} else {
|
} else {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
@@ -680,7 +682,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if ($this->hasNote($name)) {
|
if ($this->hasNote($name)) {
|
||||||
return $this->runNote($name, $this->_attributes[$name]);
|
return $this->runNote($name, $this->_attributes[$name]);
|
||||||
}
|
}
|
||||||
return $this->_attributes[$name] ?? null;
|
return $this->_attributes[$name] ?? NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -705,7 +707,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$_tmp = [];
|
$_tmp = [];
|
||||||
$condition = [];
|
$condition = [];
|
||||||
foreach ($this->_attributes as $key => $val) {
|
foreach ($this->_attributes as $key => $val) {
|
||||||
$oldValue = $this->_oldAttributes[$key] ?? null;
|
$oldValue = $this->_oldAttributes[$key] ?? NULL;
|
||||||
if ($val === $oldValue) {
|
if ($val === $oldValue) {
|
||||||
$condition[$key] = $val;
|
$condition[$key] = $val;
|
||||||
} else {
|
} else {
|
||||||
@@ -833,7 +835,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function afterSave($attributes, $changeAttributes): bool
|
public function afterSave($attributes, $changeAttributes): bool
|
||||||
{
|
{
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -843,7 +845,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function beforeSave($model): bool
|
public function beforeSave($model): bool
|
||||||
{
|
{
|
||||||
return true;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -882,7 +884,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (method_exists($this, $method)) {
|
if (method_exists($this, $method)) {
|
||||||
return $this->{$method}();
|
return $this->{$method}();
|
||||||
}
|
}
|
||||||
$value = $this->_attributes[$name] ?? null;
|
$value = $this->_attributes[$name] ?? NULL;
|
||||||
|
|
||||||
return $this->_getter($name, $value);
|
return $this->_getter($name, $value);
|
||||||
}
|
}
|
||||||
@@ -932,7 +934,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
protected function hasNote($name, string $type = self::GET): bool
|
protected function hasNote($name, string $type = self::GET): bool
|
||||||
{
|
{
|
||||||
if (!isset($this->_annotations[$type])) {
|
if (!isset($this->_annotations[$type])) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return isset($this->_annotations[$type][$name]);
|
return isset($this->_annotations[$type][$name]);
|
||||||
}
|
}
|
||||||
@@ -999,7 +1001,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function offsetSet(mixed $offset, mixed $value)
|
#[ReturnTypeWillChange] public function offsetSet(mixed $offset, mixed $value)
|
||||||
{
|
{
|
||||||
$this->__set($offset, $value);
|
$this->__set($offset, $value);
|
||||||
}
|
}
|
||||||
@@ -1008,7 +1010,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param mixed $offset
|
* @param mixed $offset
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function offsetUnset(mixed $offset)
|
#[ReturnTypeWillChange] public function offsetUnset(mixed $offset)
|
||||||
{
|
{
|
||||||
if (!isset($this->_attributes[$offset])
|
if (!isset($this->_attributes[$offset])
|
||||||
&& !isset($this->_oldAttributes[$offset])) {
|
&& !isset($this->_oldAttributes[$offset])) {
|
||||||
@@ -1058,7 +1060,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
$model = duplicate(static::class);
|
$model = duplicate(static::class);
|
||||||
$model->_attributes = $data;
|
$model->_attributes = $data;
|
||||||
$model->_oldAttributes = $data;
|
$model->_oldAttributes = $data;
|
||||||
$model->setIsNowExample(false);
|
$model->setIsNowExample(FALSE);
|
||||||
return $model;
|
return $model;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+6
-12
@@ -75,24 +75,18 @@ class Connection extends Component
|
|||||||
public Schema $_schema;
|
public Schema $_schema;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
|
||||||
*/
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* execute by __construct
|
* execute by __construct
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->eventProvider->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
|
$eventProvider = Kiri::getDi()->get(EventProvider::class);
|
||||||
$this->eventProvider->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
|
$eventProvider->on(OnWorkerStop::class, [$this, 'clear_connection'], 0);
|
||||||
$this->eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
$eventProvider->on(OnWorkerExit::class, [$this, 'clear_connection'], 0);
|
||||||
$this->eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
$eventProvider->on(BeginTransaction::class, [$this, 'beginTransaction'], 0);
|
||||||
$this->eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
$eventProvider->on(Rollback::class, [$this, 'rollback'], 0);
|
||||||
|
$eventProvider->on(Commit::class, [$this, 'commit'], 0);
|
||||||
|
|
||||||
if (Db::transactionsActive()) {
|
if (Db::transactionsActive()) {
|
||||||
$this->beginTransaction();
|
$this->beginTransaction();
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ use Kiri\Application;
|
|||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Note\Inject;
|
|
||||||
use Server\Events\OnWorkerStart;
|
use Server\Events\OnWorkerStart;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -24,13 +23,6 @@ class DatabasesProviders extends Providers
|
|||||||
private array $_pooLength = ['min' => 0, 'max' => 1];
|
private array $_pooLength = ['min' => 0, 'max' => 1];
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
|
||||||
*/
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Application $application
|
* @param Application $application
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
|
|||||||
Reference in New Issue
Block a user