| 1 | <?php |
||
| 8 | class PersistentList { |
||
| 9 | private $items; |
||
| 10 | |||
| 11 | function __construct() { |
||
| 14 | |||
| 15 | public function get() { |
||
| 18 | |||
| 19 | public function add( $item ) { |
||
| 22 | |||
| 23 | public function print() { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Saves the items to a file and returns the file contents |
||
| 29 | */ |
||
| 30 | public function save( $file_path ) { |
||
| 40 | } |