Sections.php 291 B

1234567891011121314
  1. <?php
  2. class Sections {
  3. public $start = "It worked the first time.";
  4. public function middle() {
  5. return array(
  6. array('item' => "And it worked the second time."),
  7. array('item' => "As well as the third."),
  8. );
  9. }
  10. public $final = "Then, surprisingly, it worked the final time.";
  11. }