1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 13:21:54 +02:00

Fix for deprecation notices when running tests on PHP 8.2. Upgraded Conception to 4.2.2

This commit is contained in:
Cameron
2023-01-08 08:45:19 -08:00
parent 3c9c623f2d
commit 3b41b8a9d1
4 changed files with 203 additions and 481 deletions

View File

@@ -49,7 +49,7 @@ abstract class Base extends \Codeception\Module
{
foreach ($this->deployer_components as $component)
{
$method = "reconfigure_${component}";
$method = "reconfigure_{$component}";
if (method_exists($this->deployer, $method))
{
$this->deployer->$method($this);