CartStorageInterface
last analyzed

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
/**
3
 * Finance module for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-finance
6
 * @package   hipanel-module-finance
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\finance\cart\storage;
12
13
/**
14
 * Interface CartStorageInterface.
15
 *
16
 * @author Dmytro Naumenko <[email protected]>
17
 */
18
interface CartStorageInterface extends \ArrayAccess
19
{
20
}
21