2010-04-21 10:23:49 +00:00

21 lines
539 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 7490 2010-03-29 19:53:27Z 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'));
}
}