2008-09-07 13:48:40 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\Tests\Mocks;
|
2009-01-04 16:15:32 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
class 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
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|