A container class that conforms to an interface needed by PHPFUI. The Container class does not impart any html or other formatting, but simply contains items that will be output in the order they were added to the collection.
CloneableInstantiable
- Implements
Countable PHPFUI \Interfaces \Walkable Stringable - Traits
Methods |
public __construct() Construct a Container. Any arguments passed to the constructor will be added to the container. |
public __toString() : string |
public add(PHPFUI Add an item to the Container
|
public addAsFirst(?mixed $object) : static Adds to the front of the container
|
public count() : int Supports the Countable interface |
public prepend(PHPFUI Add an item to the beginning of the Container
|
public walk(string $method, ?mixed $argument = NULL) : static Recursively walks all objects and calls the passed method on each object where it exists
|
Properties |
private array $items = []
|