1 | <?php |
||
12 | class Oblist extends AbstractCollection |
||
13 | { |
||
14 | /** |
||
15 | * Creates an atom within the oblist with a null value. |
||
16 | * |
||
17 | * @param string $pname The name of the atom to create. |
||
18 | * @return mixed The value of the atom created. |
||
19 | */ |
||
20 | 2 | public function create($pname) |
|
28 | |||
29 | /** |
||
30 | * Retrieves a value from the oblist. |
||
31 | * |
||
32 | * @param string $pname The name of the atom from which to retrieve the value. |
||
33 | * @return mixed The value if the atom exists in the oblist, false otherwise. |
||
34 | */ |
||
35 | 2 | public function get($pname) |
|
39 | } |
||
40 |