Ferreteria/v0.6/clade/IO/Aspect/Entry/@removed

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | IO‎ | Aspect‎ | Entry
Jump to navigation Jump to search
Removed Code

2025-06-04

Commented out yesterday:

#
    // 2025-06-03 old
    static public function FromObjects(HostIface $oHost, CredsIface $oCreds) : SelfIface {
    #static public function FromObjects(HostIface $oHost, CredsIface $oCreds, ConnxIface $oConnx) : SelfIface {
        $oThis = new static;
        #$oThis->WithHost($oHost);
        #$oThis->WithCreds($oCreds);
        #$oThis->WithConnx($oConnx);
        #$oThis->QOConnx()->SetIt($oConnx);
        $oThis->QOCreds()->SetIt($oCreds);
        $oThis->QOHost()->SetIt($oHost);
        return $oThis;
    }

    // -- SETUP -- //
    // ++ ACCESS ++ //

    private $ooCred = NULL; public function QOCreds() : QObjIface { return $this->ooCred ?? ($this->ooCred = QObjClass::AsNew()); }
    #private $ooCnnx = NULL; public function QOConnx() : QObjIface { return $this->ooCnnx ?? ($this->ooCnnx = QObjClass::AsNew()); }
    private $ooHost = NULL; public function QOHost()  : QObjIface { return $this->ooHost ?? ($this->ooHost = QObjClass::AsNew()); }

    // -- ACCESS -- //