FunctionArgumentOperand::__construct PHP Метод

__construct() публичный Метод

public __construct ( $FunctionArgumentOperandType = null )
        public function __construct($FunctionArgumentOperandType = null)
        {
            $this->FunctionArgumentOperandType = $FunctionArgumentOperandType;
        }

Usage Example

 public function __construct($feedId = null, $feedAttributeId = null, $FunctionArgumentOperandType = null)
 {
     parent::__construct();
     $this->feedId = $feedId;
     $this->feedAttributeId = $feedAttributeId;
     $this->FunctionArgumentOperandType = $FunctionArgumentOperandType;
 }
All Usage Examples Of FunctionArgumentOperand::__construct