Arquivos
hhvm/hphp/test/ext/debugger_tests/eval_t.php
T
Paul Tarjan f5569e4755 clean up tests dir
I think this dir shouldn't have anything non-necessary in the root.
2013-06-06 16:31:09 -07:00

19 linhas
335 B
PHP

<?php
class cls {
public $pub;
private $pri;
public function __construct() {
$this->pub = 11;
$this->pri = 12;
}
public function meth($x) {
$a = $this->pub.':'.$this->pri;
$b = $this->pub.':'.$this->pri;
$c = $this->pub.':'.$this->pri;
return $a.'-'.$b.'-'.$c;
}
}
error_log('eval_t.php loaded');