此儲存庫已於 2025-08-22 封存。您可以查看檔案並進行 Clone,但無法推送或開啟問題或合併請求。
Files
dumbo/vendor/nikic/php-parser/test/code/parser/stmt/class/staticMethod.test-fail
2014-11-25 16:42:40 +01:00

13 行
360 B
Plaintext

Some special methods cannot be static
-----
<?php class A { static function __construct() {} }
-----
"__construct" method cannot be static on line 1
-----
<?php class A { static function __destruct() {} }
-----
"__destruct" method cannot be static on line 1
-----
<?php class A { static function __clone() {} }
-----
"__clone" method cannot be static on line 1