Skip to content

Commit

Permalink
Merge pull request #41 from AJenbo/patch-1
Browse files Browse the repository at this point in the history
Correct return value for init command
  • Loading branch information
PierreRambaud authored Dec 9, 2020
2 parents 4406828 + 2c6be6a commit b9cd87a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Command/CsFixerInitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$destination . '/.' . $template
);
}

return 0;
}
}
2 changes: 2 additions & 0 deletions src/Command/PhpStanInitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$destination . '/' . $template
);
}

return 0;
}
}

0 comments on commit b9cd87a

Please sign in to comment.