1 | <?php |
||
5 | class BstoreContainer |
||
6 | { |
||
7 | /** |
||
8 | * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture). |
||
9 | * |
||
10 | * @var array |
||
11 | */ |
||
12 | private $BSECollection = []; |
||
13 | |||
14 | /** |
||
15 | * Add a BLIP Store Entry. |
||
16 | * |
||
17 | * @param BstoreContainer\BSE $BSE |
||
18 | */ |
||
19 | public function addBSE($BSE) |
||
24 | |||
25 | /** |
||
26 | * Get the collection of BLIP Store Entries. |
||
27 | * |
||
28 | * @return BstoreContainer\BSE[] |
||
29 | */ |
||
30 | public function getBSECollection() |
||
34 | } |
||
35 |