Skip to content

Commit 3114162

Browse files
committed
v. 7.1.2
1 parent b39a477 commit 3114162

File tree

6 files changed

+16
-20
lines changed

6 files changed

+16
-20
lines changed

Classes/Controller/QuizController.php

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,10 +1539,8 @@ public function introAction(): ResponseInterface
15391539

15401540
/**
15411541
* action show
1542-
*
1543-
* @param \Fixpunkt\FpMasterquiz\Domain\Model\Quiz||null $quiz
15441542
*/
1545-
public function showAction(Quiz $quiz = null): ResponseInterface
1543+
public function showAction(?Quiz $quiz = null): ResponseInterface
15461544
{
15471545
if (!$quiz instanceof Quiz) {
15481546
$quiz = $this->getDefaultQuiz();
@@ -1674,10 +1672,8 @@ public function showAction(Quiz $quiz = null): ResponseInterface
16741672

16751673
/**
16761674
* action showByTag
1677-
*
1678-
* @param \Fixpunkt\FpMasterquiz\Domain\Model\Quiz||null $quiz
16791675
*/
1680-
public function showByTagAction(Quiz $quiz = null): ResponseInterface
1676+
public function showByTagAction(?Quiz $quiz = null): ResponseInterface
16811677
{
16821678
if (!$quiz instanceof Quiz) {
16831679
$quiz = $this->getDefaultQuiz();
@@ -1976,10 +1972,8 @@ public function showAjaxAction(Quiz $quiz): ResponseInterface
19761972

19771973
/**
19781974
* action result
1979-
*
1980-
* @param \Fixpunkt\FpMasterquiz\Domain\Model\Quiz||null $quiz
19811975
*/
1982-
public function resultAction(Quiz $quiz = null): ResponseInterface
1976+
public function resultAction(?Quiz $quiz = null): ResponseInterface
19831977
{
19841978
if (!$quiz instanceof Quiz) {
19851979
$quiz = $this->getDefaultQuiz();
@@ -2043,10 +2037,8 @@ public function resultAction(Quiz $quiz = null): ResponseInterface
20432037

20442038
/**
20452039
* action highscore
2046-
*
2047-
* @param \Fixpunkt\FpMasterquiz\Domain\Model\Quiz||null $quiz
20482040
*/
2049-
public function highscoreAction(Quiz $quiz = null): ResponseInterface
2041+
public function highscoreAction(?Quiz $quiz = null): ResponseInterface
20502042
{
20512043
if (!$quiz instanceof Quiz) {
20522044
$quiz = $this->getDefaultQuiz();
@@ -2289,7 +2281,7 @@ protected function addDocHeaderDropDown(string $currentAction): void
22892281
$this->moduleTemplate->getDocHeaderComponent()->getMenuRegistry()->addMenu($actionMenu);
22902282
}
22912283

2292-
protected function getModuleUri(string $controller = null, string $action = null): string
2284+
protected function getModuleUri(?string $controller = null, ?string $action = null): string
22932285
{
22942286
return $this->uriBuilder->reset()->uriFor($action, null, $controller, 'mod1');
22952287
}

Documentation/ChangeLog/Index.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,5 +290,7 @@ ChangeLog
290290

291291
Documentation again.
292292

293-
7.1.1:
293+
7.1.1/2:
294+
PHP 8.4 Bugfix.
295+
294296
New home url: https://github.com/fixpunkt-com/fp_masterquiz

Documentation/Localization.de_DE.tmpl/ChangeLog/Index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ Der Seitentitel kann nun wieder geändert werden.
201201

202202
Dokumentation schon wieder.
203203

204-
7.1.1:
204+
7.1.1/2:
205+
PHP 8.4 Bugfix.
205206

206207
Neuer Ort bei GitHub: https://github.com/fixpunkt-com/fp_masterquiz

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# fp_masterquiz
22

3-
version 7.1.1
3+
version 7.1.2
44

55
TYPO3 extension to create a quiz, poll or test. The participant result will be saved in the DB too and can be deleted automatically via Scheduler.
66

@@ -51,7 +51,8 @@ Changes in 7.1.0:
5151
- PageTitleProvider added.
5252
- Documentation again.
5353

54-
Changes in 7.1.1:
54+
Changes in 7.1.2:
55+
- PHP 8.4 Bugfix.
5556
- New home url: https://github.com/fixpunkt-com/fp_masterquiz
5657

5758
You find the whole changelog here:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"Fixpunkt\\FpMasterquiz\\Tests\\" : "Tests"
2424
}
2525
},
26-
"homepage" : "https://github.com/bihor/fp_masterquiz",
26+
"homepage" : "https://github.com/fixpunkt-com/fp_masterquiz",
2727
"license" : "GPL-3.0-or-later",
2828
"keywords" : [
29-
"quiz poll myquizpoll"
29+
"quiz poll masterquiz"
3030
],
3131
"extra": {
3232
"typo3/cms": {

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'category' => 'plugin',
1717
'author' => 'Kurt Gusbeth',
1818
'state' => 'stable',
19-
'version' => '7.1.1',
19+
'version' => '7.1.2',
2020
'constraints' => [
2121
'depends' => [
2222
'typo3' => '13.4.0-13.4.99',

0 commit comments

Comments
 (0)