mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
We fix the most often occuring typos according to a recent codespell report[1] in tests, code comments and documentation. [1] <https://fossies.org/linux/test/php-src-master-f8f48ce.191129.tar.gz/codespell.html>.
18 lines
310 B
PHP
18 lines
310 B
PHP
--TEST--
|
|
SPL: FixedArray: overridden count()
|
|
--FILE--
|
|
<?php
|
|
$obj = new SplFixedArray(2);
|
|
var_dump(count($obj));
|
|
class SplFixedArray2 extends SplFixedArray {
|
|
public function count() {
|
|
return -parent::count();
|
|
}
|
|
}
|
|
$obj = new SplFixedArray2(2);
|
|
var_dump(count($obj));
|
|
?>
|
|
--EXPECT--
|
|
int(2)
|
|
int(-2)
|