Skip to content

Commit cb74b78

Browse files
Remove completion commands
1 parent e5155e6 commit cb74b78

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Console/Application.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@ public function __construct(string $executable)
5555
*/
5656
public function getDefaultCommands(): array
5757
{
58-
$resolver = new Resolver($this->executable);
58+
$resolver = new Resolver($this->executable);
59+
$symfonyDefaults = parent::getDefaultCommands();
5960

6061
return array_merge(
61-
parent::getDefaultCommands(),
62+
array_slice($symfonyDefaults, 0, 2),
6263
[
6364
new Cmd\Install($resolver),
6465
new Cmd\Uninstall($resolver),

0 commit comments

Comments
 (0)