14 lines
304 B
PHP
14 lines
304 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Cart;
|
||
|
|
||
|
use Darryldecode\Cart\CartCondition as DarryldecodeCartCondition;
|
||
|
|
||
|
class CartCondition extends DarryldecodeCartCondition
|
||
|
{
|
||
|
public function getAttribute($key, $default = null)
|
||
|
{
|
||
|
return array_get($this->getAttributes(), $key, $default);
|
||
|
}
|
||
|
}
|