Sections_Iterable_Object.php 349 B

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