PHP Class Go\Lang\Annotation\BaseAnnotation

Datei anzeigen Open project: goaop/framework

Public Properties

Property Type Description
$value string Value property. Common among all derived classes.

Public Methods

Method Description
__construct ( array $data ) Constructor
__get ( string $name ) Error handler for unknown property accessor in Annotation class.
__set ( string $name, mixed $value ) Error handler for unknown property mutator in Annotation class.

Method Details

__construct() final public method

Constructor
final public __construct ( array $data )
$data array Key-value for properties to be defined in this class

__get() public method

Error handler for unknown property accessor in Annotation class.
public __get ( string $name )
$name string Unknown property name

__set() public method

Error handler for unknown property mutator in Annotation class.
public __set ( string $name, mixed $value )
$name string Unknown property name
$value mixed Property value

Property Details

$value public_oe property

Value property. Common among all derived classes.
public string $value
return string