/** * Logic that will be executed when command is visited * * @param AbstractCommand $command * @param int $depth * * @return mixed */ function process(AbstractCommand $command, $depth = 0) { $this->descriptions = array_merge($this->descriptions, $command->getDescriptions()); }