for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Slince shipment tracker library
* @author Tao <[email protected]>
*/
namespace Slince\ShipmentTracking\USPS;
use Slince\ShipmentTracking\Foundation\ShipmentEvent as BaseShipmentEvent;
class ShipmentEvent extends BaseShipmentEvent
{
* @var string
protected $time;
protected $day;
protected $city;
protected $state;
protected $zipCode;
protected $country;
* @return string
public function getCity()
return $this->city;
}
* @param string $city
* @return ShipmentEvent
public function setCity($city)
$this->city = $city;
return $this;
public function getCountry()
return $this->country;
* @param string $country
public function setCountry($country)
$this->country = $country;
public function getDay()
return $this->day;
* @param string $day
public function setDay($day)
$this->day = $day;
public function getState()
return $this->state;
* @param string $state
public function setState($state)
$this->state = $state;
public function getTime()
return $this->time;
* @param string $time
public function setTime($time)
$this->time = $time;
public function getZipCode()
return $this->zipCode;
* @param string $zipCode
public function setZipCode($zipCode)
$this->zipCode = $zipCode;