12345678910111213141516171819202122232425262728293031 |
- <?php
-
- namespace Doctrine\Tests\Models\DDC117;
-
-
- class DDC117Link
- {
-
-
- public $source;
-
-
-
- public $target;
-
- public function __construct($source, $target, $description)
- {
- $this->source = $source;
- $this->target = $target;
- }
- }
|