1ea3b987
Administrator
maby first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?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){ }
}
}
|