Documentation

Table Of Contents

Previous topic

< Class Phalcon\Annotations\Adapter\Memory

Next topic

Class Phalcon\Annotations\Annotation >

This Page

Class Phalcon\Annotations\Adapter\Xcache

extends abstract class Phalcon\Annotations\Adapter

implements Phalcon\Annotations\AdapterInterface

Stores the parsed annotations to XCache. This adapter is suitable for production

<?php

 $annotations = new \Phalcon\Annotations\Adapter\Xcache();

Methods

public Phalcon\Annotations\Reflection read (unknown $key)

Reads parsed annotations from XCache

public write (unknown $key, Phalcon\Annotations\Reflection $data)

Writes parsed annotations to XCache

public setReader (unknown $reader) inherited from Phalcon\Annotations\Adapter

Sets the annotations parser

public Phalcon\Annotations\ReaderInterface getReader () inherited from Phalcon\Annotations\Adapter

Returns the annotation reader

public Phalcon\Annotations\Reflection get (unknown $className) inherited from Phalcon\Annotations\Adapter

Parses or retrieves all the annotations found in a class

public array getMethods (unknown $className) inherited from Phalcon\Annotations\Adapter

Returns the annotations found in all the class’ methods

public Phalcon\Annotations\Collection getMethod (unknown $className, unknown $methodName) inherited from Phalcon\Annotations\Adapter

Returns the annotations found in a specific method

public array getProperties (unknown $className) inherited from Phalcon\Annotations\Adapter

Returns the annotations found in all the class’ methods

public Phalcon\Annotations\Collection getProperty (unknown $className, unknown $propertyName) inherited from Phalcon\Annotations\Adapter

Returns the annotations found in a specific property

Follow along: