Skip to content

Commit

Permalink
[BUGFIX] Fix invalid class name
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Feb 16, 2025
1 parent eb60fe1 commit fcc3e01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/General/Renaming/ConstantsToBackedEnumValueRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public function getRuleDefinition(): RuleDefinition
,
[
new RenameClassAndConstFetch(
'\TYPO3\CMS\Core\Resource\AbstractFile',
'TYPO3\CMS\Core\Resource\AbstractFile',
'FILETYPE_UNKNOWN',
'\TYPO3\CMS\Core\Resource\FileType',
'TYPO3\CMS\Core\Resource\FileType',
'UNKNOWN'
),
]
Expand Down

0 comments on commit fcc3e01

Please sign in to comment.