Fix integration tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-12-30 14:33:38 +01:00
parent 74814ad614
commit b26caaa6e5
2 changed files with 5 additions and 6 deletions

View File

@@ -37,12 +37,9 @@ class Listener {
/** @var ConfigService */
private $configService;
/** @var string|null */
private $userId;
public function __construct(ConfigService $configService, $userId) {
public function __construct(ConfigService $configService) {
$this->configService = $configService;
$this->userId = $userId;
}
public function register(IEventDispatcher $dispatcher): void {