Annotations\Adapter\Apc::write

public write (mixed $key, Phalcon\Annotations\Reflection $data) Writes parsed annotations to APC

Annotations\Adapter\Files::write

public write (mixed $key, Phalcon\Annotations\Reflection $data) Writes parsed annotations to files

Annotations\Adapter\Memory

extends abstract class Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface Source on GitHub Stores the parsed annotations in memory. This adapter is the suitable development/testing Methods public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from memory public write (mixed $key, Phalcon\Annotations\Reflection $data) Writes parsed annotations to memory public setReader (Phalcon\Annotations\ReaderInterface $reader) inherited from Phalcon\Annot

Annotations\Adapter\Memory::read

public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from memory

Annotations\Adapter\Files

extends abstract class Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface Source on GitHub Stores the parsed annotations in files. This adapter is suitable for production use Phalcon\Annotations\Adapter\Files; $annotations = new Files(['annotationsDir' => 'app/cache/annotations/']); Methods public __construct ([array $options]) Phalcon\Annotations\Adapter\Files constructor public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from files

Annotations\Adapter\Files::read

public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from files

Annotations\AdapterInterface::getProperty

abstract public getProperty (mixed $className, mixed $propertyName) ...

Annotations\AdapterInterface::setReader

abstract public setReader (Phalcon\Annotations\ReaderInterface $reader) ...

Annotations\Adapter\Apc

extends abstract class Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface Source on GitHub Stores the parsed annotations in APC. This adapter is suitable for production $annotations = new \Phalcon\Annotations\Adapter\Apc(); Methods public __construct ([array $options]) Phalcon\Annotations\Adapter\Apc constructor public Phalcon\Annotations\Reflection read (string $key) Reads parsed annotations from APC public write (mixed $key, Phalcon\Annotations\Reflection $data) Writ

Annotations\AdapterInterface::getProperties

abstract public getProperties (mixed $className) ...