Skip to content
Snippets Groups Projects
Commit d1b439bb authored by Matthias Adrowski's avatar Matthias Adrowski
Browse files

[TASK] Fix missing nullable return type

parent aa70cc1d
No related branches found
No related tags found
1 merge request!35Feature upgrade to typo3 11
......@@ -52,7 +52,7 @@ class JobTeaserController extends ActionController {
* @return void
* @throws \TYPO3\CMS\Extbase\Persistence\Exception\InvalidQueryException
*/
public function indexAction(): \Psr\Http\Message\ResponseInterface {
public function indexAction(): ?\Psr\Http\Message\ResponseInterface {
$allowedLocations = [];
if ($this->settings['locations'] !== '') {
$allowedLocations = GeneralUtility::trimExplode(',', $this->settings['locations']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment