for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Crummy\Phlack\Common\Matcher;
use Crummy\Phlack\WebHook\CommandInterface;
class NonMatcher implements MatcherInterface
{
/**
* @param CommandInterface $command
*
* @return bool
*/
public function matches(CommandInterface $command)
return false;
}