commandName = $commandName; $this->targetName = $targetName; $this->type = $type; } /** * @inheritdoc */ public function getType() { return $this->type; } /** * @inheritdoc */ public function getCommandName() { return $this->commandName; } /** * @inheritdoc */ public function getTargetName() { return $this->targetName; } /** * Exit with a status code configured to defer completion to the shell * * @see \Stecman\Component\Symfony\Console\BashCompletion\HookFactory::$hooks */ public function run() { exit(self::PATH_COMPLETION_EXIT_CODE); } }