Skip to content

Commit

Permalink
Cleanup fix cs and qs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Nov 25, 2024
1 parent 5366e47 commit a514423
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/.development/node_modules
/captainhook.config.json
/composer.lock
/.phpunit.result.cache
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
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@
"[ -L .Build/Web/typo3conf/ext/mkcontentai ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/mkcontentai",
"[ -e .Build/bin/captainhook ] && .Build/bin/captainhook install -f -s || echo 'CaptainHook missing, skip install.'"
],
"pre-qs": "[ -e .Build/bin/phpcs ] || composer update",
"runqs": [
"@pre-qs",
"pre-qa": "[ -e .Build/bin/phpcs ] || composer update",
"runqa": [
"@pre-qa",
"@fix",
"@lint",
"@test"
Expand Down Expand Up @@ -161,7 +161,7 @@
".Build/bin/php-cs-fixer fix -v"
],
"fix": [
"@pre-qs",
"@pre-qa",
"@fix:phpcs"
]
}
Expand Down

0 comments on commit a514423

Please sign in to comment.