2008-09-07 17:48:40 +04:00
|
|
|
<?php
|
|
|
|
|
2008-09-12 21:39:39 +04:00
|
|
|
class Doctrine_ClassMetadataMock extends Doctrine_ORM_Mapping_ClassMetadata
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
|
|
|
/* Mock API */
|
|
|
|
|
2008-12-18 17:08:11 +03:00
|
|
|
public function setIdGeneratorType($type) {
|
|
|
|
$this->_generatorType = $type;
|
2008-09-07 17:48:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|