init without trunk
This commit is contained in:
parent
ed24ac4994
commit
bb809e7233
14652 changed files with 177862 additions and 94817 deletions
34
vendor/gedmo/doctrine-extensions/lib/Gedmo/Mapping/Driver.php
vendored
Normal file
34
vendor/gedmo/doctrine-extensions/lib/Gedmo/Mapping/Driver.php
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace Gedmo\Mapping;
|
||||
|
||||
/**
|
||||
* The mapping driver abstract class, defines the
|
||||
* metadata extraction function common among
|
||||
* all drivers used on these extensions.
|
||||
*
|
||||
* @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
|
||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
interface Driver
|
||||
{
|
||||
/**
|
||||
* Read extended metadata configuration for
|
||||
* a single mapped class
|
||||
*
|
||||
* @param object $meta
|
||||
* @param array $config
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function readExtendedMetadata($meta, array &$config);
|
||||
|
||||
/**
|
||||
* Passes in the original driver
|
||||
*
|
||||
* @param object $driver
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setOriginalDriver($driver);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue