13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
class Doctrine_ClassMetadataMock extends Doctrine_ORM_Mapping_ClassMetadata
|
|
{
|
|
/* Mock API */
|
|
|
|
public function setIdGeneratorType($type) {
|
|
$this->_generatorType = $type;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|