$entry['content'], 'content_type' => $entry['mimetype'], 'is_archived' => (bool) ($entry['is_archived'] || $this->markAsRead), 'is_starred' => (bool) $entry['is_starred'], ] + $entry; } /** * {@inheritdoc} */ protected function setEntryAsRead(array $importedEntry) { $importedEntry['is_archived'] = 1; return $importedEntry; } }