X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fvalidator%2FTests%2FConstraints%2FFixtures%2FChildA.php;fp=vendor%2Fsymfony%2Fvalidator%2FTests%2FConstraints%2FFixtures%2FChildA.php;h=2234ecda28e88fc3a4443d7faee45f9a65795644;hp=0000000000000000000000000000000000000000;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/symfony/validator/Tests/Constraints/Fixtures/ChildA.php b/vendor/symfony/validator/Tests/Constraints/Fixtures/ChildA.php new file mode 100644 index 000000000..2234ecda2 --- /dev/null +++ b/vendor/symfony/validator/Tests/Constraints/Fixtures/ChildA.php @@ -0,0 +1,30 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Validator\Tests\Constraints\Fixtures; + +use Symfony\Component\Validator\Constraints as Assert; + +class ChildA +{ + /** + * @Assert\Valid + * @Assert\NotNull + * @Assert\NotBlank + */ + public $name; + /** + * @var ChildB + * @Assert\Valid + * @Assert\NotNull + */ + public $childB; +}