From b6e0cc2a700775c41ebaf182ea6ebb8ff1f3f27f Mon Sep 17 00:00:00 2001 From: Hannes Bochmann Date: Wed, 3 Jan 2024 08:52:44 +0100 Subject: [PATCH] Cleanup fix cs --- Classes/Model/Provider.php | 2 +- Classes/Model/ProviderHolder.php | 2 +- Classes/Routines/Auth/FeUser.php | 2 +- Classes/Transformer/InterfaceTransformer.php | 2 +- Classes/Transformer/Simple.php | 14 +++++++------- Classes/Utility/Factory.php | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Classes/Model/Provider.php b/Classes/Model/Provider.php index 0816b91..0808f01 100644 --- a/Classes/Model/Provider.php +++ b/Classes/Model/Provider.php @@ -43,7 +43,7 @@ public function getTableName() /** * the ts config for from the provider. * - * @return \Sys25\RnBase\Configuration\Processor + * @return Sys25\RnBase\Configuration\Processor */ public function getConfigurations() { diff --git a/Classes/Model/ProviderHolder.php b/Classes/Model/ProviderHolder.php index d64cd6f..2076337 100644 --- a/Classes/Model/ProviderHolder.php +++ b/Classes/Model/ProviderHolder.php @@ -63,7 +63,7 @@ public function getProvider() /** * the config from the provider. * - * @return \Sys25\RnBase\Configuration\Processor + * @return Sys25\RnBase\Configuration\Processor */ protected function getConfigurations() { diff --git a/Classes/Routines/Auth/FeUser.php b/Classes/Routines/Auth/FeUser.php index d5a7162..6a82a4c 100644 --- a/Classes/Routines/Auth/FeUser.php +++ b/Classes/Routines/Auth/FeUser.php @@ -143,7 +143,7 @@ public function checkAccess() } /** - * @return \TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController + * @return TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController */ protected function getFrontendController() { diff --git a/Classes/Transformer/InterfaceTransformer.php b/Classes/Transformer/InterfaceTransformer.php index d1eff5c..e04c4f6 100644 --- a/Classes/Transformer/InterfaceTransformer.php +++ b/Classes/Transformer/InterfaceTransformer.php @@ -32,7 +32,7 @@ interface Tx_T3rest_Transformer_InterfaceTransformer /** * transforms the data into a supplier. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return Tx_T3rest_Model_Supplier diff --git a/Classes/Transformer/Simple.php b/Classes/Transformer/Simple.php index a0a8d1a..502882f 100644 --- a/Classes/Transformer/Simple.php +++ b/Classes/Transformer/Simple.php @@ -32,7 +32,7 @@ class Tx_T3rest_Transformer_Simple extends Tx_T3rest_Model_ProviderHolder implem /** * transforms the item. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return Tx_T3rest_Model_Supplier @@ -51,7 +51,7 @@ public function transform( /** * prepares the item to transform. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return void @@ -65,7 +65,7 @@ protected function prepareItem( /** * wraps the record using stdwrap. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return void @@ -116,7 +116,7 @@ protected function wrapRecord( /** * creates the links. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return void @@ -152,11 +152,11 @@ protected function prepareLinks( /** * creates an link object. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * @param array $parameters * - * @return \Sys25\RnBase\Utility\Link + * @return Sys25\RnBase\Utility\Link */ protected function initLink( Sys25\RnBase\Domain\Model\DataInterface $item, @@ -176,7 +176,7 @@ protected function initLink( /** * creates the supplier. * - * @param \Sys25\RnBase\Domain\Model\DataInterface $item + * @param Sys25\RnBase\Domain\Model\DataInterface $item * @param string $confId * * @return Tx_T3rest_Model_Supplier diff --git a/Classes/Utility/Factory.php b/Classes/Utility/Factory.php index 6389cbf..6e53964 100644 --- a/Classes/Utility/Factory.php +++ b/Classes/Utility/Factory.php @@ -105,7 +105,7 @@ public static function getSupplier(array $ignoreKeys = []) * If the current request has a site language, this means that the SiteResolver has detected a * page with a site configuration and a selected language, so let's choose that one. * - * @return \TYPO3\CMS\Core\Site\Entity\SiteLanguage|null + * @return TYPO3\CMS\Core\Site\Entity\SiteLanguage|null */ public static function getCurrentSiteLanguage() {