123456789101112131415161718192021222324252627282930 |
- <?php
-
- namespace Doctrine\Tests\Models\Company;
-
-
- class CompanyFixContract extends CompanyContract
- {
-
-
- private $fixPrice = 0;
-
- public function calculatePrice()
- {
- return $this->fixPrice;
- }
-
- public function getFixPrice()
- {
- return $this->fixPrice;
- }
-
- public function setFixPrice($fixPrice)
- {
- $this->fixPrice = $fixPrice;
- }
- }
|