mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

Per RFC https://wiki.php.net/rfc/reclassify_e_strict While reviewing this, found that there are still three E_STRICTs left in libraries - need to discuss those.
13 lines
171 B
PHP
13 lines
171 B
PHP
--TEST--
|
|
Test for abstract static classes
|
|
--FILE--
|
|
<?php
|
|
abstract class TestClass
|
|
{
|
|
abstract static public function getName();
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
|
|
===DONE===
|