summaryrefslogtreecommitdiff
path: root/tests/test_static_numeric_array_access/code.php
blob: 77f48be5bba3eae939a50c19a221e46064e41bb1 (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("foo", array(
        "foo",
        "bar",
        "baz",
    ));
}