test(IT): Setup integration tests

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-07-27 11:10:50 +02:00
parent 545631a880
commit d3c6448295
121 changed files with 3329 additions and 2878 deletions

View File

@@ -27,7 +27,7 @@ declare(strict_types=1);
namespace SP\Core;
use SP\Domain\Config\Ports\ConfigDataInterface;
use SP\Domain\Config\Services\ConfigFile;
use SP\Domain\Config\Ports\ConfigFileService;
use SP\Domain\Core\Bootstrap\ModuleInterface;
use SP\Domain\Core\Context\Context;
use SP\Domain\Core\Events\EventDispatcherInterface;
@@ -37,7 +37,7 @@ use SP\Domain\Core\Events\EventDispatcherInterface;
*/
abstract class ModuleBase implements ModuleInterface
{
protected ConfigFile $config;
protected ConfigFileService $config;
protected ConfigDataInterface $configData;
protected Context $context;
private EventDispatcherInterface $eventDispatcher;