*/ class ProfileConfigMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'profile_config', ProfileConfig::class); } public function get(string $userId): ProfileConfig { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId))); return $this->findEntity($qb); } public function getArray(string $userId): array { return $this->get($userId)->getConfigArray(); } }