Memory.php
662 Bytes
<?php
namespace Phalcon\Annotations\Adapter {
/**
* Phalcon\Annotations\Adapter\Memory
*
* Stores the parsed annotations in memory. This adapter is the suitable development/testing
*/
class Memory extends \Phalcon\Annotations\Adapter implements \Phalcon\Annotations\AdapterInterface {
protected $_data;
/**
* Reads parsed annotations from memory
*
* @param string $key
* @return \Phalcon\Annotations\Reflection
*/
public function read($key){ }
/**
* Writes parsed annotations to memory
*
* @param string $key
* @param \Phalcon\Annotations\Reflection $data
*/
public function write($key, $data){ }
}
}