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