Skip to content

Commit

Permalink
Fix silly syntax error...
Browse files Browse the repository at this point in the history
  • Loading branch information
nitori committed Nov 16, 2024
1 parent 67b1d0a commit cdc1c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/EventListeners/RegisterIcons.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __invoke(BootCompletedEvent $event): void
$this->iconRegistry->registerIcon(
'mask-fieldtype-' . $maskIcon->value,
SvgIconProvider::class,
['source' => 'EXT:mask/Resources/Public/Icons/Fieldtypes/' . GeneralUtility::underscoredToUpperCamelCase($maskIcon>value) . '.svg']
['source' => 'EXT:mask/Resources/Public/Icons/Fieldtypes/' . GeneralUtility::underscoredToUpperCamelCase($maskIcon->value) . '.svg']
);
}
}
Expand Down

0 comments on commit cdc1c05

Please sign in to comment.