2008-02-03 21:29:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The yaml driver loads metadata informations about classes from .yml files.
|
|
|
|
*
|
|
|
|
*/
|
2008-09-12 17:39:39 +00:00
|
|
|
class Doctrine_ORM_Mapping_Driver_YamlDriver
|
2008-02-03 21:29:57 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2008-09-12 17:39:39 +00:00
|
|
|
public function loadMetadataForClass($className, Doctrine_ORM_Mapping_ClassMetadata $metadata)
|
2008-02-03 21:29:57 +00:00
|
|
|
{
|
2009-01-05 20:18:56 +00:00
|
|
|
throw new Doctrine_Exception("YAML driver not yet implemented.");
|
2008-02-03 21:29:57 +00:00
|
|
|
}
|
|
|
|
}
|