for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bpost\BpostApiClient\Bpost\Order;
use SimpleXMLElement;
/**
* bPost PugoAddress class
*
* @author Tijs Verkoyen <[email protected]>
*/
class PugoAddress extends Address
{
const TAG_NAME = 'pugoAddress';
* @param SimpleXMLElement $xml
* @return PugoAddress
public static function createFromXML(SimpleXMLElement $xml)
return parent::createFromXML($xml);
}