Remove interact from command and implement bootstrap method

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos
2021-07-18 10:11:39 -03:00
committed by Julius Härtl
parent e01e4cf1a7
commit 6714c89220
7 changed files with 91 additions and 89 deletions

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;