<path value="$PROJECT_DIR$/vendor/symfony/polyfill-iconv" />
</include_path>
</component>
- <component name="PhpProjectSharedConfiguration" php_language_level="7.3" />
+ <component name="PhpProjectSharedConfiguration" php_language_level="8.0" />
</project>
\ No newline at end of file
}
/**
- * @param string $keywords
+ * @param string|array $keywords
*/
- public function setKeywords(string $keywords): void
+ public function setKeywords(string|array $keywords): void
{
+ if (is_array($keywords)) {
+ $keywords = implode(' ', $keywords);
+ }
$this->keywords = $keywords;
}