Arquivos
hhvm/hphp/test/quick/debugger/info1.php
T
Herman Venter 7b75527b3d Replicate debugger info tests in test/quick/debugger
Ongoing migration of tests to the new infrastructure. The old tests stay in place until we have another way to test the client API.
2013-06-27 10:38:22 -07:00

12 linhas
123 B
PHP

<?php
function myfunc($a, $b) {
error_log($a.$b);
}
class MyClass {
public $pub;
protected $pro;
private $pri;
}