mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
15 lines
203 B
PHP
15 lines
203 B
PHP
--TEST--
|
|
SPL: Allow valid extension of SplFileObject::fscanf
|
|
--FILE--
|
|
<?php
|
|
|
|
class A extends SplFileObject {
|
|
public function fscanf($format, &...$vars) {
|
|
|
|
}
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|