Iyzipay\JsonBuilder::addPrice PHP 메소드

addPrice() 공개 메소드

public addPrice ( $key, $value = null ) : JsonBuilder
$key
$value
리턴 JsonBuilder
    public function addPrice($key, $value = null)
    {
        if (isset($value)) {
            $this->json[$key] = RequestFormatter::formatPrice($value);
        }
        return $this;
    }