21 lines
503 B
PHP
21 lines
503 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Report
|
||
|
*
|
||
|
* 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 Report extends BaseReport
|
||
|
{
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->actAs('Timestampable');
|
||
|
$this->hasOne('Commandes', array('local' => 'order_id', 'foreign' => 'id'));
|
||
|
}
|
||
|
}
|