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
Just glancing at this project for possible future use, and noticed what seems like an issue with the documentation:
// Either get the Code object and read it's code and/or value
$type = $product->getNotificationType();
$code = $code->getCode(); // "03"
$value = $code->getValue(); // "Notification confirmed on publication"
I assume the second line of code should read:
$code = $type->getCode();
Since $code was not defined prior to this line. I haven't dug into the code itself, but that strikes me as probably incorrect.
Apologies if I've misunderstood!
The text was updated successfully, but these errors were encountered:
Just glancing at this project for possible future use, and noticed what seems like an issue with the documentation:
I assume the second line of code should read:
$code = $type->getCode();
Since $code was not defined prior to this line. I haven't dug into the code itself, but that strikes me as probably incorrect.
Apologies if I've misunderstood!
The text was updated successfully, but these errors were encountered: