1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00

Trim trailing whitespace in *.phpt

This commit is contained in:
Peter Kokot
2018-10-14 15:37:22 +02:00
parent afd534f163
commit 7af945e271
6463 changed files with 17668 additions and 17677 deletions

View File

@@ -1,5 +1,5 @@
--TEST--
SPL: ArrayObject::getIteratorClass and ArrayObject::setIteratorClass basic functionality
SPL: ArrayObject::getIteratorClass and ArrayObject::setIteratorClass basic functionality
--FILE--
<?php
class MyIterator extends ArrayIterator {
@@ -9,31 +9,31 @@ class MyIterator extends ArrayIterator {
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function rewind() {
function rewind() {
$args = func_get_args();
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
return parent::rewind();
}
function valid() {
function valid() {
$args = func_get_args();
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
return parent::valid();
}
function current() {
function current() {
$args = func_get_args();
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
return parent::current();
}
function next() {
function next() {
$args = func_get_args();
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
return parent::next();
}
function key() {
function key() {
$args = func_get_args();
echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
return parent::key();