diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:14:50 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:14:50 +0200 |
commit | 902d39a3a79c6efe93c8879575fdd5a759cf03de (patch) | |
tree | e6ec0af8ac4333de34f581c2c7b5a2eb93e635a1 /ext/spl/examples/recursivecomparedualiterator.inc | |
parent | 581f0141b6dd8d20e71612f90b01507ed0783db8 (diff) | |
download | php-git-902d39a3a79c6efe93c8879575fdd5a759cf03de.tar.gz |
Trim trailing whitespace in source code files
Diffstat (limited to 'ext/spl/examples/recursivecomparedualiterator.inc')
-rw-r--r-- | ext/spl/examples/recursivecomparedualiterator.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/examples/recursivecomparedualiterator.inc b/ext/spl/examples/recursivecomparedualiterator.inc index 75265c1d58..5b63e9f0b3 100644 --- a/ext/spl/examples/recursivecomparedualiterator.inc +++ b/ext/spl/examples/recursivecomparedualiterator.inc @@ -33,7 +33,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator } /** Rewind iteration andcomparison process. Starting with $equal = true. - */ + */ function rewind() { $this->equal = true; @@ -49,7 +49,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator && !$this->getInnerIterator()->getRHS()->valid(); } - /** @return whether both inner iterators are valid and have identical + /** @return whether both inner iterators are valid and have identical * current and key values or both are non valid. */ function areIdentical() @@ -57,7 +57,7 @@ class RecursiveCompareDualIterator extends RecursiveIteratorIterator return $this->equal && $this->getInnerIterator()->areIdentical(); } - /** @return whether both inner iterators are valid and have equal current + /** @return whether both inner iterators are valid and have equal current * and key values or both are non valid. */ function areEqual() |