+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
- <component name="RunConfigurationProducerService">
- <option name="ignoredProducers">
- <set>
- <option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
- </set>
- </option>
- </component>
-</project>
\ No newline at end of file
*/
protected $title = '';
+ /**
+ * @var string
+ */
+ protected $keywords = '';
+
/**
* @var string
*/
return $this->url;
}
+ /**
+ * @return string
+ */
+ public function getKeywords(): string
+ {
+ return $this->keywords;
+ }
+
/**
* @param string $id
*/
$this->url = $url;
}
+ /**
+ * @param string $keywords
+ */
+ public function setKeywords(string $keywords): void
+ {
+ $this->keywords = $keywords;
+ }
+
/**
* @return array[]
*/
*/
public function getIndividualDocData()
{
- return ['id' => $this->getId(), 'type' => $this->getType(), 'thumb' => $this->getThumb(), 'title' => $this->getTitle(), 'url' => $this->getUrl(), 'text' => $this->getText()];
+ return ['id' => $this->getId(), 'type' => $this->getType(), 'thumb' => $this->getThumb(), 'title' => $this->getTitle(), 'url' => $this->getUrl(), 'text' => $this->getText(), 'keywords' => $this->getKeywords()];
}
}
\ No newline at end of file