MvcLite\FilterChain

Base Filter

Synopsis

class FilterChain extends ObjectAbstract {
  • // constants
  • const MSG_ERR_FILTER_NOT_FOUND = "Requested filter [%s] not found";
  • // members
  • protected array $filters = ;
  • // Inherited methods from ObjectAbstract
  • public final void __get()
  • public final void __set()
  • public final void __call()
  • public void __toString()
  • public string identify()
}

Hierarchy

Coverage

Methods 100% 2 / 2
Lines 100% 6 / 6

Constants

Name Value
MSG_ERR_FILTER_NOT_FOUND "Requested filter [%s] not found"
MSG_ERR_IDENTIFY 'Descendents must implement the identify method'

Members

protected

  • $filters — array
    holds the list of filters

Methods

public

Inherited from MvcLite\ObjectAbstract

public

  • __call() — Overriding the __call magic method
  • __get() — Overriding the __get magic method
  • __set() — Overriding the __set magic method
  • __toString() — returns a string representation of the object
  • identify() — method used to identify the object instance

History