for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Obblm\Core\Validator\Constraints\Team;
use Obblm\Core\Contracts\RuleHelperInterface;
use Symfony\Component\Validator\Constraint;
class InducementsQuantity extends Constraint
{
public $limitMessage = 'obblm.constraints.inducements.quantity.violation';
public $helper;
public function __construct(RuleHelperInterface $helper, $options = null)
parent::__construct($options);
$this->helper = $helper;
}
public function validatedBy()
return get_class($this).'Validator';