21 lines
493 B
PHP
Raw Normal View History

2009-05-06 07:53:28 +00:00
<?php
/**
* Price
*
* 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 Price extends BasePrice
{
2009-05-07 09:32:28 +00:00
public function setUp()
{
parent::setUp();
$this->actAs('Timestampable');
$this->hasOne('Country', array('local' => 'country_id','foreign' => 'id'));
}
2009-05-06 07:53:28 +00:00
}