'mysql', 'host' => '127.0.0.1', 'port' => 3306, 'dbname' => 'anodb', 'username' => 'root', 'password' => 'root' ]; $entitie = new Entitie([ 'name varchar(32) not null', 'type varchar(16) not null', 'period varchar(16) not null', 'longitude double not null', 'latitude double not null', 'info_exist tinyint(1) not null', 'slider json', 'images json', 'video text', 'background text' ], 'settlements'); $db_manager = new DBManager($entitie, $config); ?>