123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
-
- namespace Doctrine\Tests\Models\Navigation;
-
-
- class NavCountry
- {
-
-
- private $id;
-
-
-
- private $name;
-
-
-
- private $pois;
-
- function __construct($name) {
- $this->name = $name;
- }
-
- public function getId() {
- return $this->id;
- }
-
- public function getName() {
- return $this->name;
- }
- }
|