Skip to content

Instantly share code, notes, and snippets.

@tim-cotten
Created March 4, 2021 21:42
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/2dca04ff25cc99673b527dc3fb9182d0 to your computer and use it in GitHub Desktop.
Save tim-cotten/2dca04ff25cc99673b527dc3fb9182d0 to your computer and use it in GitHub Desktop.
PHP Bugs: Confusing Non-Objects for Objects (Example E)
<?php
// Exclude orders that are drop-ship products from store lookups
if ($order->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