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