Skip to content

Commit c4a6179

Browse files
Cleanup fix cs
1 parent c507b98 commit c4a6179

6 files changed

+10
-10
lines changed

action/class.tx_mklib_action_AbstractList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected function getItems(Sys25\RnBase\Frontend\Request\RequestInterface $requ
6767
$repo = $this->getRepository();
6868

6969
// check the repo interface
70-
if (!($repo instanceof Sys25\RnBase\Domain\Repository\SearchInterface)) {
70+
if (!$repo instanceof Sys25\RnBase\Domain\Repository\SearchInterface) {
7171
throw new RuntimeException('the repository "'.$repo::class.'" has to implement the interface "\Sys25\RnBase\Domain\Repository\SearchInterface"!', intval(ERROR_CODE_MKLIB.'1'));
7272
}
7373

filter/class.tx_mklib_filter_SingleItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ abstract class tx_mklib_filter_SingleItem extends Sys25\RnBase\Frontend\Filter\B
3333
/**
3434
* (non-PHPdoc).
3535
*
36-
* @see \Sys25\RnBase\Frontend\Filter\BaseFilter::initFilter()
36+
* @see Sys25\RnBase\Frontend\Filter\BaseFilter::initFilter()
3737
*/
3838
protected function initFilter(&$fields, &$options, Sys25\RnBase\Frontend\Request\RequestInterface $request)
3939
{

mod1/export/class.tx_mklib_mod1_export_ListBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function addVisitor(array $callback): void
5050
*
5151
* {@inheritdoc}
5252
*
53-
* @see \Sys25\RnBase\Frontend\Marker\ListBuilder::renderEach()
53+
* @see Sys25\RnBase\Frontend\Marker\ListBuilder::renderEach()
5454
*/
5555
public function renderEach(
5656
Sys25\RnBase\Frontend\Marker\IListProvider $provider,
@@ -146,7 +146,7 @@ protected function getWrapForSubpart(
146146
*
147147
* {@inheritdoc}
148148
*
149-
* @see \Sys25\RnBase\Frontend\Marker\ListBuilder::render()
149+
* @see Sys25\RnBase\Frontend\Marker\ListBuilder::render()
150150
*/
151151
public function render(
152152
&$dataArr,

search/class.tx_mklib_search_Constant.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ abstract class tx_mklib_search_Constant extends Sys25\RnBase\Search\SearchBase
3333
/**
3434
* (non-PHPdoc).
3535
*
36-
* @see \Sys25\RnBase\Search\SearchBase::getTableMappings()
36+
* @see Sys25\RnBase\Search\SearchBase::getTableMappings()
3737
*/
3838
protected function getTableMappings()
3939
{
@@ -43,7 +43,7 @@ protected function getTableMappings()
4343
/**
4444
* (non-PHPdoc).
4545
*
46-
* @see \Sys25\RnBase\Search\SearchBase::useAlias()
46+
* @see Sys25\RnBase\Search\SearchBase::useAlias()
4747
*/
4848
protected function useAlias()
4949
{
@@ -53,7 +53,7 @@ protected function useAlias()
5353
/**
5454
* (non-PHPdoc).
5555
*
56-
* @see \Sys25\RnBase\Search\SearchBase::getBaseTableAlias()
56+
* @see Sys25\RnBase\Search\SearchBase::getBaseTableAlias()
5757
*/
5858
protected function getBaseTableAlias()
5959
{
@@ -70,7 +70,7 @@ abstract protected function getConstantTypesTable();
7070
/**
7171
* (non-PHPdoc).
7272
*
73-
* @see \Sys25\RnBase\Search\SearchBase::getJoins()
73+
* @see Sys25\RnBase\Search\SearchBase::getJoins()
7474
*/
7575
protected function getJoins($tableAliases)
7676
{

tests/fixtures/classes/class.tx_mklib_tests_fixtures_classes_DummyMod.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function getName(): string
7474
*
7575
* {@inheritdoc}
7676
*
77-
* @see \Sys25\RnBase\Backend\Module\BaseModule::getDoc()
77+
* @see Sys25\RnBase\Backend\Module\BaseModule::getDoc()
7878
*/
7979
public function getDoc()
8080
{

tests/fixtures/classes/class.tx_mklib_tests_fixtures_classes_SorterFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class tx_mklib_tests_fixtures_classes_SorterFilter extends tx_mklib_filter_Sorte
3333
/**
3434
* (non-PHPdoc).
3535
*
36-
* @see \Sys25\RnBase\Frontend\Filter\BaseFilter::initFilter()
36+
* @see Sys25\RnBase\Frontend\Filter\BaseFilter::initFilter()
3737
*/
3838
protected function initFilter(&$fields, &$options, Sys25\RnBase\Frontend\Request\RequestInterface $request): string
3939
{

0 commit comments

Comments
 (0)