Skip to content

Commit

Permalink
Merge pull request #368 from sdunayer/Fix-deprecated-warning-in-php-8.2+
Browse files Browse the repository at this point in the history
Fix "deprecated" warning in php 8.2+ (incorrect variable name)
  • Loading branch information
darryldecode authored Sep 12, 2023
2 parents 35825fa + 5170839 commit 25e347f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Darryldecode/Cart/Cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function __construct($session, $events, $instanceName, $session_key, $con
$this->sessionKeyCartItems = $this->sessionKey . '_cart_items';
$this->sessionKeyCartConditions = $this->sessionKey . '_cart_conditions';
$this->config = $config;
$this->currentItem = null;
$this->currentItemId = null;
$this->fireEvent('created');
}

Expand Down

0 comments on commit 25e347f

Please sign in to comment.