db = $db; $this->config = $config; $this->user = $user; } /** * Создает модель * @template T * @param class-string $modelName * @return T */ public function getModel($modelName) { $model = new $modelName(); $model->db = $this->db; $model->factory = $this; $model->config = $this->config; $model->user = $this->user; $model->setUp(); // return $model; } }