1 | <?php |
||
10 | class PersistentList { |
||
11 | private $items; |
||
12 | |||
13 | function __construct() { |
||
16 | |||
17 | public function get() { |
||
20 | |||
21 | public function add( $item ) { |
||
27 | |||
28 | public function count() { |
||
31 | |||
32 | public function output() { |
||
35 | |||
36 | /** |
||
37 | * Saves the items to a file and returns the file contents |
||
38 | */ |
||
39 | public function save( $file_path, $allow_empty = true ) { |
||
55 | } |
||
56 |