for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\CurrencyBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @author Jan Góralski <[email protected]>
class DifferentSourceTargetCurrency extends Constraint
{
* @var string
public $message = 'sylius.exchange_rate.different_source_target_currency';
* {@inheritdoc}
public function getTargets()
return self::CLASS_CONSTRAINT;
}