* @throws Exception */ public function findAllExistingStates(): array { $states = []; foreach ($this->connection->fetchAllNumeric(self::FIND_ALL_STATES) as $row) { if ('' !== $row[0] && null !== $row[0]) { $states[] = $row[0]; } } return $states; } }