1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00
Files
archived-php-src/Zend/tests/bug67436/b.inc
T
Peter Kokot f6605c788f Rename *.php files in Zend/tests to *.inc
*.php files are ignored by Git and a better practice might be to rename
PHP included files for tests.
2018-09-23 17:20:42 +02:00

9 lines
104 B
PHP

<?php
class b extends a {
public function test() {
echo __METHOD__ . "()\n";
parent::test();
}
}