X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fserializer%2FTests%2FFixtures%2FGroupDummyChild.php;fp=vendor%2Fsymfony%2Fserializer%2FTests%2FFixtures%2FGroupDummyChild.php;h=fa72160ec657fe7cca2459d9f884ed49aa523491;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/serializer/Tests/Fixtures/GroupDummyChild.php b/vendor/symfony/serializer/Tests/Fixtures/GroupDummyChild.php new file mode 100644 index 000000000..fa72160ec --- /dev/null +++ b/vendor/symfony/serializer/Tests/Fixtures/GroupDummyChild.php @@ -0,0 +1,33 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Serializer\Tests\Fixtures; + +class GroupDummyChild extends GroupDummy +{ + private $baz; + + /** + * @return mixed + */ + public function getBaz() + { + return $this->baz; + } + + /** + * @param mixed $baz + */ + public function setBaz($baz) + { + $this->baz = $baz; + } +}