Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created November 29, 2024 08:14
Show Gist options
  • Save unlocomqx/1d867fb20b9c7180da7ea75153be5298 to your computer and use it in GitHub Desktop.
Save unlocomqx/1d867fb20b9c7180da7ea75153be5298 to your computer and use it in GitHub Desktop.
<?php
/* Path
--> /src/Adapter/Presenter/Product/ProductLazyArray.php
*/
// Change
$this->product['has_discount'] = (0 != $product['reduction']);
// To
$this->product['has_discount'] = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment