1
0
mirror of synced 2025-01-20 23:41:39 +03:00

16 lines
357 B
PHP

<?php
/**
* The yaml driver loads metadata informations about classes from .yml files.
*
*/
class Doctrine_ORM_Mapping_Driver_YamlDriver
{
/**
*
*/
public function loadMetadataForClass($className, Doctrine_ORM_Mapping_ClassMetadata $metadata)
{
throw new Doctrine_Exception("YAML driver not yet implemented.");
}
}