Inheritance: implements Crummy\Phlack\Common\Matcher\MatcherInterface
Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function matches(CommandInterface $command)
 {
     return null === $this->commandName ? $command instanceof SlashCommand : $command instanceof SlashCommand && parent::matches($command);
 }