diff --git a/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php b/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php index 4d6a86cbfc5c61d18398cbbeb764e4ddc2e97183..8023bb387b0e7e6b6dc3ce2325f5722c1500eb19 100644 --- a/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php +++ b/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php @@ -31,17 +31,19 @@ class CaseContentObject extends AbstractContentObject return ''; } - $setCurrent = isset($conf['setCurrent.']) ? $this->cObj->stdWrap($conf['setCurrent'], $conf['setCurrent.']) : $conf['setCurrent']; + $setCurrent = isset($conf['setCurrent.']) + ? $this->cObj->stdWrap($conf['setCurrent'] ?? '', $conf['setCurrent.']) + : ($conf['setCurrent'] ?? null); if ($setCurrent) { $this->cObj->data[$this->cObj->currentValKey] = $setCurrent; } $key = isset($conf['key.']) ? $this->cObj->stdWrap($conf['key'], $conf['key.']) : $conf['key']; - $key = (string)$conf[$key] !== '' ? $key : 'default'; + $key = isset($conf[$key]) && (string)$conf[$key] !== '' ? $key : 'default'; // If no "default" property is available, then an empty string is returned - if ($key === 'default' && $conf['default'] === null) { + if ($key === 'default' && !isset($conf['default'])) { $theValue = ''; } else { - $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'], $key); + $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key); } if (isset($conf['stdWrap.'])) { $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']); diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/CaseContentObjectTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/CaseContentObjectTest.php index 3e53e88c83b06f59f01ce3b0aaad29dc58bfe900..a9742e7845f0e22b0572d1c698da1422e8d10fff 100644 --- a/typo3/sysext/frontend/Tests/Unit/ContentObject/CaseContentObjectTest.php +++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/CaseContentObjectTest.php @@ -1,4 +1,6 @@ <?php +declare(strict_types = 1); + namespace TYPO3\CMS\Frontend\Tests\Unit\ContentObject; /* @@ -32,20 +34,15 @@ class CaseContentObjectTest extends UnitTestCase */ protected $resetSingletonInstances = true; - /** - * Subject is not notice free, disable E_NOTICES - */ - protected static $suppressNotices = true; - /** * @var CaseContentObject|\PHPUnit_Framework_MockObject_MockObject */ - protected $subject = null; + protected $subject; /** * Set up */ - protected function setUp() + protected function setUp(): void { /** @var TypoScriptFrontendController $tsfe */ $tsfe = $this->getMockBuilder(TypoScriptFrontendController::class) @@ -73,7 +70,7 @@ class CaseContentObjectTest extends UnitTestCase /** * @test */ - public function renderReturnsEmptyStringIfNoKeyMatchesAndIfNoDefaultObjectIsSet() + public function renderReturnsEmptyStringIfNoKeyMatchesAndIfNoDefaultObjectIsSet(): void { $conf = [ 'key' => 'not existing' @@ -84,7 +81,7 @@ class CaseContentObjectTest extends UnitTestCase /** * @test */ - public function renderReturnsContentFromDefaultObjectIfKeyDoesNotExist() + public function renderReturnsContentFromDefaultObjectIfKeyDoesNotExist(): void { $conf = [ 'key' => 'not existing', diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php index 864b1432f52596765e055c9342b35f9a884e9685..7db588b9fb9e915361ae34e7d2ab6d9133899950 100644 --- a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php +++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentDataProcessorTest.php @@ -1,4 +1,6 @@ <?php +declare(strict_types = 1); + namespace TYPO3\CMS\Frontend\Tests\Unit\ContentObject; /* @@ -16,21 +18,22 @@ namespace TYPO3\CMS\Frontend\Tests\Unit\ContentObject; use TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor; use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer; use TYPO3\CMS\Frontend\Tests\Unit\ContentObject\Fixtures\DataProcessorFixture; +use TYPO3\TestingFramework\Core\Unit\UnitTestCase; /** * Testcase for TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor */ -class ContentDataProcessorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase +class ContentDataProcessorTest extends UnitTestCase { /** * @var ContentDataProcessor */ - protected $contentDataProcessor = null; + protected $contentDataProcessor; /** * Set up */ - protected function setUp() + protected function setUp(): void { $this->contentDataProcessor = new ContentDataProcessor(); } @@ -38,7 +41,7 @@ class ContentDataProcessorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTes /** * @test */ - public function throwsExceptionIfProcessorClassDoesNotExist() + public function throwsExceptionIfProcessorClassDoesNotExist(): void { $this->expectException(\UnexpectedValueException::class); $this->expectExceptionCode(1427455378); @@ -55,7 +58,7 @@ class ContentDataProcessorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTes /** * @test */ - public function throwsExceptionIfProcessorClassDoesNotImplementInterface() + public function throwsExceptionIfProcessorClassDoesNotImplementInterface(): void { $this->expectException(\UnexpectedValueException::class); $this->expectExceptionCode(1427455377); @@ -72,7 +75,7 @@ class ContentDataProcessorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTes /** * @test */ - public function processorIsCalled() + public function processorIsCalled(): void { $contentObjectRendererStub = new ContentObjectRenderer(); $config = [ @@ -82,6 +85,9 @@ class ContentDataProcessorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTes ] ]; $variables = []; - $this->assertSame(['foo' => 'bar'], $this->contentDataProcessor->process($contentObjectRendererStub, $config, $variables)); + $this->assertSame( + ['foo' => 'bar'], + $this->contentDataProcessor->process($contentObjectRendererStub, $config, $variables) + ); } }