['session', 'cookie'], 'default' => 'ZN\Shopping\ShoppingDefaultConfiguration', 'config' => 'Storage:shopping', 'construct' => 'constructor' ]; /** * Keeps key * * @var string */ protected $key; /** * Constructor * * @param void * * @return void */ public function constructor() { $this->key = md5('SystemCartData'); if( $sessionCart = $this->driver->select($this->key) ) { Properties::$items = $sessionCart; } } }