dbh = $this->connectWithMySQL(); } catch (PDOException $e) { throw new PDOException($e->getMessage(), (int)$e->getCode()); } } private function connectWithMySQL(): object { $dsn = "mysql:host=$this->host;dbname=$this->db;charset=$this->charset"; $options = [ PDO::ATTR_PERSISTENT => true, ]; return new PDO($dsn, $this->user, $this->pass, $options); } }