21 lines
541 B
PHP
21 lines
541 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Country
|
||
|
*
|
||
|
* This class has been auto-generated by the Doctrine ORM Framework
|
||
|
*
|
||
|
* @package ##PACKAGE##
|
||
|
* @subpackage ##SUBPACKAGE##
|
||
|
* @author ##NAME## <##EMAIL##>
|
||
|
* @version SVN: $Id: Builder.php 5441 2009-01-30 22:58:43Z jwage $
|
||
|
*/
|
||
|
class Country extends BaseCountry
|
||
|
{
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->hasOne('Price', array('local' => 'id','foreign' => 'country_id'));
|
||
|
$this->hasOne('Delais', array('local' => 'id','foreign' => 'country_id'));
|
||
|
}
|
||
|
}
|