You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice: Trying to get property 'ConditionCode' of non-object in /home/shashi/projects/dhl-api/DHL/Entity/Base.php on line 235
Fatal error: Uncaught InvalidArgumentException: Field : Barcodes is not defined for DHL\Entity\GB\ShipmentResponse in /home/shashi/projects/dhl-api/DHL/Datatype/Base.php:272 Stack trace: #0 /home/shashi/projects/dhl-api/DHL/Entity/Base.php(256): DHL\Datatype\Base->__get('Barcodes') #1 /home/shashi/projects/dhl-api/ShipmentRequest.php(158): DHL\Entity\Base->initFromXML(Object(SimpleXMLElement)) #2 {main} thrown in /home/shashi/projects/dhl-api/DHL/Datatype/Base.php on line 272 ShipmentRequest.zip
The text was updated successfully, but these errors were encountered:
or try to override the ShipmentResponse class with something like the following, but namespace issues arise later
use DHL\Entity\GB\ShipmentResponse;
class MyShipmentResponse extends ShipmentResponse {
public function __construct()
{
$this->_bodyParams['Barcodes'] = $this->_bodyParams['BarCodes'];
unset($this->_bodyParams['BarCodes']);
parent::__construct();
}
}
Notice: Trying to get property 'ConditionCode' of non-object in /home/shashi/projects/dhl-api/DHL/Entity/Base.php on line 235
Fatal error: Uncaught InvalidArgumentException: Field : Barcodes is not defined for DHL\Entity\GB\ShipmentResponse in /home/shashi/projects/dhl-api/DHL/Datatype/Base.php:272 Stack trace: #0 /home/shashi/projects/dhl-api/DHL/Entity/Base.php(256): DHL\Datatype\Base->__get('Barcodes') #1 /home/shashi/projects/dhl-api/ShipmentRequest.php(158): DHL\Entity\Base->initFromXML(Object(SimpleXMLElement)) #2 {main} thrown in /home/shashi/projects/dhl-api/DHL/Datatype/Base.php on line 272
ShipmentRequest.zip
The text was updated successfully, but these errors were encountered: