for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Test\Stub\Rule;
use Shopware\Core\Framework\Rule\Rule;
use Shopware\Core\Framework\Rule\RuleScope;
class FalseRule extends Rule
{
final public const RULE_NAME = 'false';
public function match(RuleScope $matchContext): bool
return false;
}
public function getConstraints(): array
return [];