SectionObjects.php 319 B

12345678910111213141516
  1. <?php
  2. class SectionObjects {
  3. public $start = "It worked the first time.";
  4. public function middle() {
  5. return new SectionObject;
  6. }
  7. public $final = "Then, surprisingly, it worked the final time.";
  8. }
  9. class SectionObject {
  10. public $foo = 'And it worked the second time.';
  11. public $bar = 'As well as the third.';
  12. }