Fix integration tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2021-01-04 12:10:54 +01:00
parent 74814ad614
commit b26caaa6e5
2 changed files with 5 additions and 6 deletions
+1 -4
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 {