7b75527b3d
Ongoing migration of tests to the new infrastructure. The old tests stay in place until we have another way to test the client API.
12 linhas
123 B
PHP
12 linhas
123 B
PHP
<?php
|
|
|
|
function myfunc($a, $b) {
|
|
error_log($a.$b);
|
|
}
|
|
|
|
class MyClass {
|
|
public $pub;
|
|
protected $pro;
|
|
private $pri;
|
|
}
|