Sections.php 548 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of Mustache.php.
  4. *
  5. * (c) 2010-2017 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. class Sections
  11. {
  12. public $start = 'It worked the first time.';
  13. public function middle()
  14. {
  15. return array(
  16. array('item' => 'And it worked the second time.'),
  17. array('item' => 'As well as the third.'),
  18. );
  19. }
  20. public $final = 'Then, surprisingly, it worked the final time.';
  21. }