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 011eb88 commit 3ae9156
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 @@ -23,7 +23,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 3ae9156

Please sign in to comment.