- Issue created by @alberto56
ParagraphsBehaviorInterface::settingsIcon(), in its DocBlock, says this:
* @return string[]
* The plugin settings.
However TestBoldTextBehavior::settingsIcon() contains this code:
return [
'bold' => [
'#theme' => 'paragraphs_info_icon',
'#message' => $this->t('Bold: Yes.'),
'#icon' => 'bold',
],
];
This is not of type string[].
Document that settingsIcon should return an associative array, not an array of strings.
Active
1.0
Documentation