Elcodi\Admin\ProductBundle\Validation\MinimumMoney::__construct PHP Method

__construct() public method

Builds a new class.
public __construct ( array $options = null )
$options array
    public function __construct($options = null)
    {
        if (is_array($options) && !isset($options['value'])) {
            throw new ConstraintDefinitionException(sprintf('The %s constraint requires the "value" option to be set.', get_class($this)));
        }
        parent::__construct($options);
    }