- 添加 undefined-method-call.php 测试文件 - 添加 undefined-prop-access.php 测试文件 - 创建基本的 PHP 对象方法调用测试场景 - 创建基本的 PHP 对象属性访问测试场景pull/3/head
parent
e4e63e7b8c
commit
18b4bf4ed6
2 changed files with 10 additions and 0 deletions
@ -0,0 +1,5 @@ |
||||
<?php |
||||
function main() |
||||
{ |
||||
$obj->doSomething(); |
||||
} |
||||
@ -0,0 +1,5 @@ |
||||
<?php |
||||
function main() |
||||
{ |
||||
$obj->value = 0; |
||||
} |
||||
Loading…
Reference in new issue