From 86df32439bc9d1d29d91dbce3e2556994d62f8b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 10 Jun 2022 14:16:26 +0200 Subject: [PATCH] Fix typo in property name in UploadedFileTest::setUp() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes a deprecation warning in PHP 8.2: > Deprecated: Creation of dynamic property LaminasTest\Diactoros\UploadedFileTest::$tmpfile is deprecated in /pwd/test/UploadedFileTest.php on line 39 Signed-off-by: Tim Düsterhus --- test/UploadedFileTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/UploadedFileTest.php b/test/UploadedFileTest.php index f7518862..598488f6 100644 --- a/test/UploadedFileTest.php +++ b/test/UploadedFileTest.php @@ -36,7 +36,7 @@ class UploadedFileTest extends TestCase protected function setUp() : void { - $this->tmpfile = null; + $this->tmpFile = null; } protected function tearDown() : void