123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
- namespace Doctrine\Tests\Models\Navigation;
-
-
- class NavPhotos
- {
-
-
- private $id;
-
-
-
- private $poi;
-
-
-
- private $file;
-
- function __construct($poi, $file) {
- $this->poi = $poi;
- $this->file = $file;
- }
-
- public function getId() {
- return $this->id;
- }
-
- public function getPointOfInterest() {
- return $this->poi;
- }
-
- public function getFile() {
- return $this->file;
- }
- }
|