Iyzipay\JsonBuilder::addPrice PHP Méthode

addPrice() public méthode

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