* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\AdminBundle\Validator\Constraints; use Symfony\Component\Validator\Constraint; class InlineConstraint extends Constraint { protected $service; protected $method; public function validatedBy() { return 'sonata.admin.validator.inline'; } public function isClosure() { return $this->method instanceof \Closure; } public function getClosure() { return $this->method; } /** * {@inheritDoc} */ public function getTargets() { return self::CLASS_CONSTRAINT; } public function getRequiredOptions() { return array( 'service', 'method' ); } public function getMethod() { return $this->method; } public function getService() { return $this->service; } }