Skip to content

Commit

Permalink
Cleanup switch to PSR12 from PSR2
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Dec 6, 2024
1 parent 98df0e3 commit 71e9473
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
->setCacheFile('.Build/.php_cs.cache')
->setFinder($finder)
->setRules([
'@PSR2' => true,
'@PSR12' => true,
'@Symfony' => true,
'header_comment' => ['header' => $header],
])
Expand Down
4 changes: 2 additions & 2 deletions Classes/Domain/Model/SysFileMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
class SysFileMetadata extends AbstractEntity
{
/**
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<SysFileMetadataAltTextLog>
* @var ObjectStorage<SysFileMetadataAltTextLog>
*
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
Expand All @@ -51,7 +51,7 @@ public function initializeObject(): void
}

/**
* @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage<SysFileMetadataAltTextLog>
* @return ObjectStorage<SysFileMetadataAltTextLog>
*/
public function getAltTextLogs(): ObjectStorage
{
Expand Down

0 comments on commit 71e9473

Please sign in to comment.