for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/shopify-api-php
*
* (c) Taosikai <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Slince\Shopify\Manager\Order;
class TaxLine
{
/**
* @var string
protected $title;
* @var float
protected $price;
protected $rate;
* @return string
public function getTitle()
return $this->title;
}
* @param string $title
* @return TaxLine
public function setTitle($title)
$this->title = $title;
return $this;
* @return float
public function getPrice()
return $this->price;
* @param float $price
public function setPrice($price)
$this->price = $price;
public function getRate()
return $this->rate;
* @param float $rate
public function setRate($rate)
$this->rate = $rate;