af993e697d2c9cfc5d5b5ab857d3455245be7d54
[yaffs-website] / vendor / symfony / serializer / Tests / Fixtures / PropertySiblingHolder.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Serializer\Tests\Fixtures;
13
14 /**
15  * @author Kévin Dunglas <dunglas@gmail.com>
16  */
17 class PropertySiblingHolder
18 {
19     public $sibling0;
20     public $sibling1;
21     public $sibling2;
22
23     public function __construct()
24     {
25         $sibling = new PropertySibling();
26
27         $this->sibling0 = $sibling;
28         $this->sibling1 = $sibling;
29         $this->sibling2 = $sibling;
30     }
31 }
32
33 /**
34  * @author Kévin Dunglas <dunglas@gmail.com>
35  */
36 class PropertySibling
37 {
38     public $coopTilleuls = 'Les-Tilleuls.coop';
39 }