vendor/calcinai/xero-php/src/XeroPHP/Models/Accounting/LineItem.php line 253 is currently
public function getItemCode()
{
return $this->_data['ItemCode'];
}
I believe that something like
public function getItemCode()
{
if (isset($this->_data) && isset($this->_data['ItemCode'])) {
return $this->_data['ItemCode'];
} else {
return "";
}
}
Is required to stop errors being thrown
vendor/calcinai/xero-php/src/XeroPHP/Models/Accounting/LineItem.php line 253 is currently
I believe that something like
Is required to stop errors being thrown