Files
is_shoppingcart-PS9/is_shoppingcart/src/Hook/AbstractHook.php
2025-11-19 13:23:49 +01:00

22 lines
562 B
PHP

<?php
declare(strict_types=1);
namespace Oksydan\IsShoppingcart\Hook;
use Oksydan\IsShoppingcart\Configuration\ShoppingCartConfiguration;
abstract class AbstractHook implements HookInterface
{
protected $module;
protected $context;
protected $shoppingCartConfiguration;
public function __construct(\Module $module, \Context $context, ShoppingCartConfiguration $shoppingCartConfiguration)
{
$this->module = $module;
$this->context = $context;
$this->shoppingCartConfiguration = $shoppingCartConfiguration;
}
}