SectionObjects.php 349 B

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