We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb0c1b commit afd3cb7Copy full SHA for afd3cb7
src/Commands/BaseCommand.php
@@ -168,12 +168,14 @@ protected function runComposerCommand(): array
168
$return = [
169
'code' => $code,
170
'output' => preg_split('/(\n|\r\n)/', trim($output->fetch())),
171
+ 'arguments' => $arguments,
172
];
173
} catch (\Exception $e) {
174
175
'code' => 1,
176
'output' => preg_split('/(\n|\r\n)/', $e->getMessage()),
177
'exception' => $e,
178
179
180
}
181
0 commit comments