Skip to content

Instantly share code, notes, and snippets.

@tim-cotten
Created March 4, 2021 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tim-cotten/4fb0c4ff074b8bff53de0121d4ad39ed to your computer and use it in GitHub Desktop.
Save tim-cotten/4fb0c4ff074b8bff53de0121d4ad39ed to your computer and use it in GitHub Desktop.
PHP Bugs: Confusing Non-Objects for Objects (Example D)
<?php
// Exclude orders with drop-ship items from store lookups
foreach ($order->product as $_product) {
if ($_product->type == PRODUCT::TYPE_DROPSHIP) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment