initial commit; version 22.5.12042
This commit is contained in:
13
tests/templates/recursive_partials/RecursivePartials.php
Normal file
13
tests/templates/recursive_partials/RecursivePartials.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
class RecursivePartials
|
||||
{
|
||||
public $name = 'George';
|
||||
public $child = array(
|
||||
'name' => 'Dan',
|
||||
'child' => array(
|
||||
'name' => 'Justin',
|
||||
'child' => false,
|
||||
)
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user