Encapsulators
Assume that the following statements below were previously declared somewhere else.
<?php
// Main instance
$funcdown = new \H\Lib\Funcdown\ObjectInstance;
// Underscore character constant, eg: {__FUNCTION__ ._}
\define ('_', \str_repeat (4, '_'));
// .. where '_' is mostly being used as in example below
public function EncapsulatorName (string $a, int $b, float $c) {
// ^^ -> [private] EncapsulatorName____ (string $a, int $b, float $c) { .. }
$this->{ __FUNCTION__ ._ } ($a,$b,$c);
}
?>