MetadataDriverMock.php 442 Bytes
Newer Older
1 2 3 4 5 6
<?php
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

7 8
namespace Doctrine\Tests\Mocks;

9 10 11 12 13
/**
 * Description of Doctrine_MetadataDriverMock
 *
 * @author robo
 */
14 15
class MetadataDriverMock
{
16
    public function loadMetadataForClass($className, \Doctrine\ORM\Mapping\ClassMetadata $metadata) {
17 18
        return;
    }
19 20 21
    public function isTransient($className) {
        return false;
    }
22 23
}