1: <?php
2:
3: namespace PHPixie\ORM\Relationships\Type\OneTo\Type\Many\Preloader\Property;
4:
5: class Owner extends \PHPixie\ORM\Relationships\Relationship\Implementation\Preloader
6: {
7: protected $owner;
8:
9: public function __construct($owner)
10: {
11: $this->owner = $owner;
12: }
13:
14: public function loadProperty($property)
15: {
16: $property->setValue($this->owner);
17: }
18: }
19: