1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /*
- * This file is part of the Sonata Project package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * 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;
- /**
- * {@inheritdoc}
- */
- public function validatedBy()
- {
- return 'sonata.admin.validator.inline';
- }
- /**
- * @return bool
- */
- public function isClosure()
- {
- return $this->method instanceof \Closure;
- }
- /**
- * @return mixed
- */
- public function getClosure()
- {
- return $this->method;
- }
- /**
- * {@inheritdoc}
- */
- public function getTargets()
- {
- return self::CLASS_CONSTRAINT;
- }
- /**
- * {@inheritdoc}
- */
- public function getRequiredOptions()
- {
- return array(
- 'service',
- 'method',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return $this->method;
- }
- /**
- * @return mixed
- */
- public function getService()
- {
- return $this->service;
- }
- }
|