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) Slince <[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\Country;
use Slince\Shopify\Common\Model\Model;
use Slince\Shopify\Manager\Province\Province;
class Country extends Model
{
/**
* @var string
protected $name;
* @var float
protected $tax;
protected $code;
protected $taxName;
* @var Province[]
protected $provinces;
* @return string
public function getName()
return $this->name;
}
* @param string $name
* @return Country
public function setName($name)
$this->name = $name;
return $this;
* @return float
public function getTax()
return $this->tax;
* @param float $tax
public function setTax($tax)
$this->tax = $tax;
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getTaxName()
return $this->taxName;
* @param string $taxName
public function setTaxName($taxName)
$this->taxName = $taxName;
* @return Province[]
public function getProvinces()
return $this->provinces;
* @param Province[] $provinces
public function setProvinces($provinces)
$this->provinces = $provinces;