ClassDynamic
in package
ClassDynamic Class
This class creates a magic get, set and call method. It is extended by all ValidForm Builder classes.
Tags
Table of Contents
Methods
- __call() : mixed
- Magic caller method
- __get() : mixed
- Magic getter method
- __set() : mixed
- Magic setter method
Methods
__call()
Magic caller method
public
__call(string $method, mixed $values) : mixed
Parameters
- $method : string
- $values : mixed
Tags
__get()
Magic getter method
public
__get(string $property) : mixed
Parameters
- $property : string
Tags
__set()
Magic setter method
public
__set(string $property, mixed $value) : mixed
Parameters
- $property : string
- $value : mixed