From 082a600adfdcada84922604e71ac75fc0c39fffd Mon Sep 17 00:00:00 2001 From: Clark Winkelmann Date: Sat, 20 Mar 2021 23:46:03 +0100 Subject: [PATCH] Fix variable names (#4) It's not causing any issue because the correct variable name is always used to set and read the value, and PHP is fine setting new attributes on a class dynamically. It's just the explicit variables declared don't match with those actually used later. --- php-packages/testing/src/integration/Setup/SetupScript.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-packages/testing/src/integration/Setup/SetupScript.php b/php-packages/testing/src/integration/Setup/SetupScript.php index 15c7cf490..ca9b302f9 100644 --- a/php-packages/testing/src/integration/Setup/SetupScript.php +++ b/php-packages/testing/src/integration/Setup/SetupScript.php @@ -32,7 +32,7 @@ class SetupScript * * @var int */ - protected $post; + protected $port; /** * Test database name. @@ -60,7 +60,7 @@ class SetupScript * * @var string */ - protected $prefix; + protected $pref; public function __construct() {