summaryrefslogtreecommitdiff
path: root/tests/test_short_for_additional_attribs/code.php
blob: 5d75d34f4a5a58535a25c6b9ccb078a43fa78f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

use kch42\ste\STECore;

function test_func(STECore $ste)
{
    $ste->set_var_by_name("data", array(
        array('content' => 'foo', 'foo' => true),
        array('content' => 'bar', 'foo' => false),
        array('content' => 'baz', 'foo' => false),
    ));
}