RecursivePartials.php 436 B

12345678910111213141516171819202122
  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 RecursivePartials
  11. {
  12. public $name = 'George';
  13. public $child = array(
  14. 'name' => 'Dan',
  15. 'child' => array(
  16. 'name' => 'Justin',
  17. 'child' => false,
  18. ),
  19. );
  20. }