1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
- namespace Doctrine\Tests\Models\DDC117;
-
-
- class DDC117ApproveChanges
- {
-
-
- private $id;
-
-
-
- private $articleDetails;
-
-
-
- private $reference;
-
-
-
- private $translation;
-
- public function __construct($details, $reference, $translation)
- {
- $this->articleDetails = $details;
- $this->reference = $reference;
- $this->translation = $translation;
- }
-
- public function getId()
- {
- return $this->id;
- }
-
- public function getArticleDetails()
- {
- return $this->articleDetails;
- }
-
- public function getReference()
- {
- return $this->reference;
- }
-
- public function getTranslation()
- {
- return $this->translation;
- }
- }
|