function BaseCommand::isProxyCommand
Whether or not this command is meant to call another command.
This is mainly needed to avoid duplicated warnings messages.
Return value
bool
2 methods override BaseCommand::isProxyCommand()
- GlobalCommand::isProxyCommand in vendor/
composer/ composer/ src/ Composer/ Command/ GlobalCommand.php - @inheritDoc
- OutdatedCommand::isProxyCommand in vendor/
composer/ composer/ src/ Composer/ Command/ OutdatedCommand.php - @inheritDoc
File
-
vendor/
composer/ composer/ src/ Composer/ Command/ BaseCommand.php, line 160
Class
- BaseCommand
- Base class for Composer commands
Namespace
Composer\CommandCode
public function isProxyCommand() {
return false;
}