Ferreteria/v0.6/fx/WithItemValue/@removed

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | fx‎ | WithItemValue
Jump to navigation Jump to search
Removed Function

About

  • Action: initializes a newly-created object with an InputItem object and the string to be processed by it
  • Calls:
    • Item() - saves the InputItem object
    • ParseInputString() - parses/handles the corresponding input string

Code

as of 2025-11-17:

#
    protected function WithItemValue(ItemIface $oItem, string $sValue) : void {
        $this->Item($oItem);
        $this->ParseInputString($sValue);
    }