iDimensionz Standard PHP Library

dev-master 2017-09-25 00:24 UTC

This package is auto-updated.

Last update: 2024-04-06 08:33:49 UTC


README

iDimensionz's Standard PHP Library

Library containing custom classes.

Code Climate Test Coverage

Enum (EnumAbstract)

Class to emulate enumerated fields (i.e. fields that may only specific values). The specific values are declared as constants in the child class. The parent class provides functions for interacting with the enum:

  • getValidValues(): returns an array of valid values.
  • _isValidValue($value)__: returns true or false to indicate if the value is one of the valid values for this enum.
  • setValue($value), getValue: Getter and setter for the field value.
  • The parent class provides the ability to type-cast the child class as a string to get the value as a string.