diff --git a/.gitignore b/.gitignore index 99305ea..c94fa62 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ tests/fixtures/schema tests/coverage.xml sut/core sut/modules +.idea diff --git a/src/Drush/Commands/OpenShiftDrushCommands.php b/src/Drush/Commands/OpenShiftDrushCommands.php index f231706..95eece0 100644 --- a/src/Drush/Commands/OpenShiftDrushCommands.php +++ b/src/Drush/Commands/OpenShiftDrushCommands.php @@ -115,7 +115,7 @@ private function ensureProject() : self { private function invokeOc( array $command, ?callable $callback = NULL, - bool $showOutput = TRUE + bool $showOutput = TRUE, ) : int { $this ->ensureEnvVariables() diff --git a/src/Drush/Commands/UpdateDrushCommands.php b/src/Drush/Commands/UpdateDrushCommands.php index e220af9..f246d3e 100644 --- a/src/Drush/Commands/UpdateDrushCommands.php +++ b/src/Drush/Commands/UpdateDrushCommands.php @@ -259,6 +259,7 @@ private function updateDefaultFiles(UpdateOptions $options) : self { 'docker/openshift/preflight/preflight.php', 'docker/openshift/notify.php', 'compose.yaml', + 'phpcs.xml.dist', 'phpunit.xml.dist', 'phpunit.platform.xml', 'tools/make/project/install.mk', diff --git a/src/OutputFormatters/MarkdownTableFormatter.php b/src/OutputFormatters/MarkdownTableFormatter.php index 6b9eff1..117ad9d 100644 --- a/src/OutputFormatters/MarkdownTableFormatter.php +++ b/src/OutputFormatters/MarkdownTableFormatter.php @@ -33,7 +33,7 @@ final class MarkdownTableFormatter implements FormatterInterface, ValidDataTypes public function write( OutputInterface $output, $data, - FormatterOptions $options + FormatterOptions $options, ) : void { assert($data instanceof TableTransformation); $headers = $data->getHeaders();