db = $db; $this->_registry = $_registry; } /** * Создает модель * @param string $name * @return model */ public function getModel ($name) { $modelName = "App\\Mapper\\" . $name; $model = new $modelName(); $model->db = $this->db; $model->factory = $this; $model->_registry = $this->_registry; $model->setUp(); // return $model; } }