diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-02-09 22:49:21 -0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-02-10 19:20:23 +0100 |
commit | 21e3b0c70cb338a237cc11ccc27959eac9862ded (patch) | |
tree | 2c805882a8d0b48b40ea05ba3af1d9871f12fac8 /ext/spl/internal/recursiveregexiterator.inc | |
parent | 1422e2ffd19916a6c6a15577a36d1e21b5f630b8 (diff) | |
download | php-git-21e3b0c70cb338a237cc11ccc27959eac9862ded.tar.gz |
Remove trailing whitespace in inc files
Diffstat (limited to 'ext/spl/internal/recursiveregexiterator.inc')
-rw-r--r-- | ext/spl/internal/recursiveregexiterator.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/spl/internal/recursiveregexiterator.inc b/ext/spl/internal/recursiveregexiterator.inc index ffcff0ce47..4223104398 100644 --- a/ext/spl/internal/recursiveregexiterator.inc +++ b/ext/spl/internal/recursiveregexiterator.inc @@ -15,20 +15,20 @@ * @version 1.0 * @since PHP 5.1 * - * This filter iterator assumes that the inner iterator + * This filter iterator assumes that the inner iterator */ class RecursiveRegexIterator extends RegexIterator implements RecursiveIterator { /** - * Constructs a regular expression filter around an iterator whose + * Constructs a regular expression filter around an iterator whose * elemnts or keys are strings. * * @param it inner iterator * @param regex the regular expression to match - * @param mode operation mode (one of self::MATCH, self::GET_MATCH, + * @param mode operation mode (one of self::MATCH, self::GET_MATCH, * self::ALL_MATCHES, self::SPLIT) * @param flags special flags (self::USE_KEY) - * @param preg_flags global PREG_* flags, see preg_match(), + * @param preg_flags global PREG_* flags, see preg_match(), * preg_match_all(), preg_split() */ function __construct(RecursiveIterator $it, $regex, $mode = 0, $flags = 0, $preg_flags = 0) { @@ -54,7 +54,7 @@ class RecursiveRegexIterator extends RegexIterator implements RecursiveIterator } return $this->ref->newInstance($this->getInnerIterator()->getChildren()); } - + private $ref; } |