Skip to content

Commit 6d3c4fb

Browse files
Prevent type error in string functions
1 parent 9cf7e17 commit 6d3c4fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/Runner/Action/Cli/Command/Placeholder

src/Runner/Action/Cli/Command/Placeholder/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private function findPluginConfigValue(string $value): string
9494
[$pluginClass, $key] = explode('.', substr($value, 8));
9595
foreach ($this->config->getPlugins() as $plugin) {
9696
if ($plugin->getPlugin() === $pluginClass) {
97-
return $plugin->getOptions()->get($key);
97+
return $plugin->getOptions()->get($key, '');
9898
}
9999
}
100100
return '';

0 commit comments

Comments
 (0)