From 1811a0a36d9a132eb10f2d56460741edb2adfad5 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Thu, 4 Jul 2019 12:54:30 +0900 Subject: [PATCH 1/2] Add 7.4snapshot --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 69b6cddace..2e3ab7a830 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ php: - 7.1 - 7.2 - 7.3 + - 7.4snapshot addons: apt: @@ -57,7 +58,10 @@ matrix: env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true - php: 7.2 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true + - php: 7.4snapshot + env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true allow_failures: + - php: 7.4snapshot # Use for coverage report - php: 7.3 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true From 16bc28542d6799385c25a91c205a30c7e932258a Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Tue, 2 Jul 2019 22:06:47 +0900 Subject: [PATCH 2/2] Fix Cannot declare class Autoloading_SC_Product --- tests/class/plugin/LoadClassFileChangeTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/class/plugin/LoadClassFileChangeTest.php b/tests/class/plugin/LoadClassFileChangeTest.php index 803d81bcbd..db88a77791 100644 --- a/tests/class/plugin/LoadClassFileChangeTest.php +++ b/tests/class/plugin/LoadClassFileChangeTest.php @@ -9,10 +9,6 @@ protected function setUp() { parent::setUp(); $this->createPlugin(); - if (PHP_VERSION_ID < 70200) { - $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(); - $objPlugin->load(); - } } protected function tearDown()