1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/Doctrine/Tests/Models/Cache/AttractionContactInfo.php

33 lines
560 B
PHP
Raw Normal View History

2013-02-14 02:42:13 +04:00
<?php
namespace Doctrine\Tests\Models\Cache;
/**
* @Entity
* @Table("cache_attraction_contact_info")
*/
class AttractionContactInfo extends AttractionInfo
{
const CLASSNAME = __CLASS__;
/**
* @Column(unique=true)
*/
protected $fone;
public function __construct($fone, Attraction $attraction)
{
$this->setAttraction($attraction);
$this->setFone($fone);
}
public function getFone()
{
return $this->fone;
}
public function setFone($fone)
{
$this->fone = $fone;
}
}