* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Translation\Constraints; use Symfony\Component\Validator\Constraint; /** * @Annotation * @Target({"CLASS", "ANNOTATION"}) */ class PassVsprintf extends Constraint { public $message = 'You must specify as many arguments (%d, %s ...) as the original string.'; public function getTargets() { return static::CLASS_CONSTRAINT; } }