123456789101112131415161718192021222324252627282930313233343536 |
- <?php
-
- namespace Doctrine\Tests\Models\Company;
-
-
- abstract class CompanyEvent {
-
-
- private $id;
-
-
-
- private $organization;
-
- public function getId() {
- return $this->id;
- }
-
- public function getOrganization() {
- return $this->organization;
- }
-
- public function setOrganization(CompanyOrganization $org) {
- $this->organization = $org;
- }
-
- }
|