ClassMetadataMock.php 237B

1234567891011121314
  1. <?php
  2. namespace Doctrine\Tests\Mocks;
  3. class ClassMetadataMock extends \Doctrine\ORM\Mapping\ClassMetadata
  4. {
  5. /* Mock API */
  6. public function setIdGeneratorType($type)
  7. {
  8. $this->_generatorType = $type;
  9. }
  10. }