diff --git a/typo3/sysext/core/Tests/Unit/Imaging/ImageManipulation/AreaTest.php b/typo3/sysext/core/Tests/Unit/Imaging/ImageManipulation/AreaTest.php
index d9fb5d2121f1abb0fa414fbd50d5002610e171cf..ff0a56dd1b7096bbfcd899c27c1a5c1a1ebb576e 100644
--- a/typo3/sysext/core/Tests/Unit/Imaging/ImageManipulation/AreaTest.php
+++ b/typo3/sysext/core/Tests/Unit/Imaging/ImageManipulation/AreaTest.php
@@ -23,15 +23,10 @@ use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
 
 class AreaTest extends UnitTestCase
 {
-    /**
-     * Subject is not notice free, disable E_NOTICES
-     */
-    protected static $suppressNotices = true;
-
     /**
      * @test
      */
-    public function makeRelativeToFileReducesSizes()
+    public function makeRelativeToFileReducesSizes(): void
     {
         $imageArea = new Area(50.0, 50.0, 100.0, 100.0);
         $imageFixture = new File(
@@ -49,7 +44,7 @@ class AreaTest extends UnitTestCase
         $this->assertSame($expectedResult, $relativeArea->asArray());
     }
 
-    public function applyRatioRestrictsAreaToRespectRatioDataProvider()
+    public function applyRatioRestrictsAreaToRespectRatioDataProvider(): array
     {
         return [
             [
@@ -77,7 +72,7 @@ class AreaTest extends UnitTestCase
      * @test
      * @dataProvider applyRatioRestrictsAreaToRespectRatioDataProvider
      */
-    public function applyRatioRestrictsAreaToRespectRatio(array $areaSize, $ratio)
+    public function applyRatioRestrictsAreaToRespectRatio(array $areaSize, $ratio): void
     {
         $area = new Area(...$areaSize);
         $ratioFixture = new Ratio('dummy', 'dummy', $ratio);
@@ -88,7 +83,7 @@ class AreaTest extends UnitTestCase
     /**
      * @test
      */
-    public function applyRatioDoesNothingForFreeRatio()
+    public function applyRatioDoesNothingForFreeRatio(): void
     {
         $area = new Area(0.1, 0.1, 0.2, 0.4);
         $ratioFixture = new Ratio('dummy', 'dummy', 0.0);