Skip to content

Commit

Permalink
Cleanup fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Jan 3, 2024
1 parent 428f412 commit b6e0cc2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Classes/Model/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
2 changes: 1 addition & 1 deletion Classes/Model/ProviderHolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
2 changes: 1 addition & 1 deletion Classes/Routines/Auth/FeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public function checkAccess()
}

/**
* @return \TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController
* @return TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController
*/
protected function getFrontendController()
{
Expand Down
2 changes: 1 addition & 1 deletion Classes/Transformer/InterfaceTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions Classes/Transformer/Simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Classes/Utility/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit b6e0cc2

Please sign in to comment.