Pop\Shipping\Adapter\Ups::setWeight PHP Метод

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

Set dimensions
public setWeight ( string $weight, string $unit = null ) : void
$weight string
$unit string
Результат void
    public function setWeight($weight, $unit = null)
    {
        if (null !== $unit && ($unit == 'LBS' || $unit == 'KGS')) {
            $this->weight['UnitOfMeasurement'] = $unit;
        }
        $this->weight['Weight'] = $weight;
    }