GlossaryΒΆ

ArrayAccess
The array access pattern/interface defines a container object that can be accessed as array. See the ArrayAccess php documentation for details.
Traversable
Iterator
The iterator or Traversable pattern allows to iterate over container objects (i.e. via foreach). See the Iterator php documentation for details.
RecursiveIterator
Additionally to the Iterator pattern, this pattern allows a multilevel or tree iteration over a container object. See the RecursiveIterator php documentation for details.
fqcn
Short for “full qualified class name”. The full qualified class name is the class name including its full namespace like foo\\bar\\baz\\ClassName for ClassName in namespace foo\\bar\\baz.