1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/Doctrine/Tests/Models/Company/CompanyFixContract.php

30 lines
464 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Company;
/**
* @Entity
*/
class CompanyFixContract extends CompanyContract
{
/**
* @column(type="integer")
* @var int
*/
private $fixPrice = 0;
public function calculatePrice()
{
return $this->fixPrice;
}
public function getFixPrice()
{
return $this->fixPrice;
}
public function setFixPrice($fixPrice)
{
$this->fixPrice = $fixPrice;
}
}