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\Foundation\Location;
abstract class AbstractLocation implements LocationInterface
{
* Converts to string
* @return string
public function __toString()
return $this->toString();
}
* {@inheritdoc}
public function jsonSerialize()