. * * @copyright (c) Visman * @license The MIT License (MIT) */ declare(strict_types=1); namespace ForkBB\Models\Config; use ForkBB\Models\Method; use ForkBB\Models\Config\Config; class Install extends Method { /** * Заполняет модель данными */ public function install(): Config { $this->model->setAttrs($this->c->forConfig); return $this->model; } }