Skip to content

Commit

Permalink
Cleanup fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Feb 5, 2024
1 parent 78060c4 commit ecdb3cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mod1/class.tx_mksearch_mod1_ConfigIndizes.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getPid()
return $this->getModule()->getPid();
}

public function main(ServerRequestInterface $request = null)
public function main(?ServerRequestInterface $request = null)
{
return tx_mksearch_mod1_util_Misc::getSubModuleContent(
parent::main($request),
Expand Down
2 changes: 1 addition & 1 deletion mod1/class.tx_mksearch_mod1_IndizeIndizes.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getPid()
return $this->getModule()->getPid();
}

public function main(ServerRequestInterface $request = null)
public function main(?ServerRequestInterface $request = null)
{
return tx_mksearch_mod1_util_Misc::getSubModuleContent(
parent::main($request),
Expand Down
2 changes: 1 addition & 1 deletion mod1/class.tx_mksearch_mod1_Keywords.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getPid()
return $this->getModule()->getPid();
}

public function main(ServerRequestInterface $request = null)
public function main(?ServerRequestInterface $request = null)
{
return tx_mksearch_mod1_util_Misc::getSubModuleContent(parent::main($request), $this, 'web_MksearchM1_keywords');
}
Expand Down
2 changes: 1 addition & 1 deletion mod1/class.tx_mksearch_mod1_SolrAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function getPid()
return $this->getModule()->getPid();
}

public function main(ServerRequestInterface $request = null)
public function main(?ServerRequestInterface $request = null)
{
return tx_mksearch_mod1_util_Misc::getSubModuleContent(
parent::main($request),
Expand Down

0 comments on commit ecdb3cf

Please sign in to comment.