From fcd8b274cec4e0c01284e8de69e3633667ec4b93 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sat, 13 Dec 2025 12:19:25 -0800 Subject: [PATCH 1/2] Use our composer.phar for running EPV --- skeleton/.github/workflows/tests.yml.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton/.github/workflows/tests.yml.twig b/skeleton/.github/workflows/tests.yml.twig index 552fb5a..b268f2c 100644 --- a/skeleton/.github/workflows/tests.yml.twig +++ b/skeleton/.github/workflows/tests.yml.twig @@ -99,7 +99,7 @@ jobs: - name: Setup EPV if: ${{ '{{' }} env.EPV != 0 }} - run: composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs + run: php ../composer.phar require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs working-directory: ./phpBB3/phpBB - name: Run code sniffer From 5a3d48027f4bd0db2a2e6c8ba81ecfb0686f7be4 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sat, 13 Dec 2025 12:28:48 -0800 Subject: [PATCH 2/2] Fix tests --- tests/template/template_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/template/template_test.php b/tests/template/template_test.php index 0b663f9..a46ea84 100644 --- a/tests/template/template_test.php +++ b/tests/template/template_test.php @@ -19,7 +19,7 @@ class template_test extends \phpbb_template_template_test_case { protected $test_path = __DIR__; - protected function setup_engine(array $new_config = array()) + protected function setup_engine(array $new_config = array(), string $template_path = '') { global $phpbb_root_path, $phpEx;