2008-09-07 17:48:40 +04:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\Tests\Mocks;
|
2009-01-04 19:15:32 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
class ClassMetadataMock extends \Doctrine\ORM\Mapping\ClassMetadata
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
|
|
|
/* Mock API */
|
|
|
|
|
2009-02-18 10:59:11 +03:00
|
|
|
public function setIdGeneratorType($type)
|
|
|
|
{
|
2008-12-18 17:08:11 +03:00
|
|
|
$this->_generatorType = $type;
|
2008-09-07 17:48:40 +04:00
|
|
|
}
|
|
|
|
|
2009-02-18 10:59:11 +03:00
|
|
|
}
|