Remove interact from command and implement bootstrap method

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos
2021-12-30 11:19:49 +01:00
committed by Julius Härtl
parent e01e4cf1a7
commit 6714c89220
7 changed files with 91 additions and 89 deletions
+6 -1
View File
@@ -63,7 +63,12 @@ abstract class ABoardImportService {
abstract public function assignCardsToLabels(): void;
abstract public function validateUsers(): void;
/**
* Configure import service
*
* @return void
*/
abstract public function bootstrap(): void;
public function setImportService(BoardImportService $service): void {
$this->boardImportService = $service;