Crummy\Phlack\Common\Matcher\CommandMatcher::matches PHP Метод

matches() публичный Метод

public matches ( Crummy\Phlack\WebHook\CommandInterface $command )
$command Crummy\Phlack\WebHook\CommandInterface
    public function matches(CommandInterface $command)
    {
        return null === $this->commandName ? $command instanceof SlashCommand : $command instanceof SlashCommand && parent::matches($command);
    }
CommandMatcher