21 lines
539 B
PHP
Raw Normal View History

<?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
{
2009-05-13 16:03:54 +00:00
public function setUp()
{
parent::setUp();
$this->hasOne('Price', array('local' => 'id','foreign' => 'country_id'));
2009-05-14 10:08:20 +00:00
$this->hasOne('Delais', array('local' => 'id','foreign' => 'country_id'));
2009-05-13 16:03:54 +00:00
}
}