From 42376099af3ab475de029234de5ab12999d87f58 Mon Sep 17 00:00:00 2001 From: Fabien Antoine Date: Mon, 17 Sep 2018 12:08:35 +0200 Subject: [PATCH] Update GitlabToConfigCommand.php --- src/MBO/SatisGitlab/Command/GitlabToConfigCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/MBO/SatisGitlab/Command/GitlabToConfigCommand.php b/src/MBO/SatisGitlab/Command/GitlabToConfigCommand.php index 784c7db..a8c24ce 100644 --- a/src/MBO/SatisGitlab/Command/GitlabToConfigCommand.php +++ b/src/MBO/SatisGitlab/Command/GitlabToConfigCommand.php @@ -126,7 +126,9 @@ protected function execute(InputInterface $input, OutputInterface $output) { /* project-type option */ if ( ! empty($input->getOption('project-type')) ){ $filterCollection->addFilter(new ProjectTypeFilter( - $input->getOption('project-type') + $input->getOption('project-type'), + $client, + $logger )); }