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 output() { |
||
31 | |||
32 | /** |
||
33 | * Saves the items to a file and returns the file contents |
||
34 | */ |
||
35 | public function save( $file_path ) { |
||
45 | } |
||
46 |