2008-09-07 13:48:40 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-04 16:15:32 +00:00
|
|
|
#namespace Doctrine\Tests\Mocks;
|
|
|
|
|
2008-09-12 17:39:39 +00:00
|
|
|
class Doctrine_ClassMetadataMock extends Doctrine_ORM_Mapping_ClassMetadata
|
2008-09-07 13:48:40 +00:00
|
|
|
{
|
|
|
|
/* Mock API */
|
|
|
|
|
2008-12-18 14:08:11 +00:00
|
|
|
public function setIdGeneratorType($type) {
|
|
|
|
$this->_generatorType = $type;
|
2008-09-07 13:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|