for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Philip Bergman <[email protected]>
* @copyright Zicht Online <http://www.zicht.nl>
*/
namespace Zicht\Bundle\UrlBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
* Class ContainsUrlAlias
*
* @package Zicht\Bundle\UrlBundle\Validator\Constraints
class ContainsUrlAlias extends Constraint
{
public $message = "Public url '%url%' already exists.";
* @{inheritDoc}
public function getTargets()
return self::CLASS_CONSTRAINT;
}