summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl')
-rw-r--r--ext/spl/examples/autoload.inc2
-rw-r--r--ext/spl/examples/cachingrecursiveiterator.inc2
-rw-r--r--ext/spl/examples/callbackfilteriterator.inc2
-rwxr-xr-xext/spl/examples/class_tree.php2
-rwxr-xr-xext/spl/examples/dba_array.php2
-rwxr-xr-xext/spl/examples/dba_dump.php2
-rw-r--r--ext/spl/examples/dbareader.inc2
-rw-r--r--ext/spl/examples/directorygraphiterator.inc2
-rw-r--r--ext/spl/examples/directorytree.inc2
-rwxr-xr-xext/spl/examples/directorytree.php2
-rw-r--r--ext/spl/examples/directorytreeiterator.inc2
-rw-r--r--ext/spl/examples/findfile.inc2
-rwxr-xr-xext/spl/examples/findfile.php2
-rwxr-xr-xext/spl/examples/findregex.php2
-rwxr-xr-xext/spl/examples/ini_groups.php2
-rw-r--r--ext/spl/examples/inigroups.inc2
-rw-r--r--ext/spl/examples/keyfilter.inc2
-rwxr-xr-xext/spl/examples/nocvsdir.php2
-rwxr-xr-xext/spl/examples/phar_from_dir.php2
-rw-r--r--ext/spl/examples/regexfindfile.inc2
-rw-r--r--ext/spl/examples/searchiterator.inc2
-rw-r--r--ext/spl/examples/tests/examples.inc2
-rw-r--r--ext/spl/internal/emptyiterator.inc2
-rw-r--r--ext/spl/internal/filteriterator.inc2
-rw-r--r--ext/spl/internal/infiniteiterator.inc2
-rw-r--r--ext/spl/internal/limititerator.inc2
-rw-r--r--ext/spl/internal/norewinditerator.inc2
-rw-r--r--ext/spl/internal/outeriterator.inc2
-rw-r--r--ext/spl/internal/parentiterator.inc2
-rw-r--r--ext/spl/internal/recursivearrayiterator.inc2
-rw-r--r--ext/spl/internal/recursivecachingiterator.inc2
-rw-r--r--ext/spl/internal/recursivefilteriterator.inc2
-rw-r--r--ext/spl/internal/recursiveiterator.inc2
-rw-r--r--ext/spl/internal/recursiveiteratoriterator.inc2
-rw-r--r--ext/spl/internal/recursiveregexiterator.inc2
-rw-r--r--ext/spl/internal/recursivetreeiterator.inc2
-rw-r--r--ext/spl/internal/seekableiterator.inc2
-rw-r--r--ext/spl/spl_heap.c1
-rw-r--r--ext/spl/tests/testclass.class.inc2
-rw-r--r--ext/spl/tests/testclass.inc2
-rw-r--r--ext/spl/tests/testclass.php.inc2
41 files changed, 40 insertions, 41 deletions
diff --git a/ext/spl/examples/autoload.inc b/ext/spl/examples/autoload.inc
index 2ccd0d1be8..0dc423199e 100644
--- a/ext/spl/examples/autoload.inc
+++ b/ext/spl/examples/autoload.inc
@@ -47,4 +47,4 @@ function __autoload($classname) {
fprintf(STDERR, 'Class not found ('.$classname.")\n");
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/cachingrecursiveiterator.inc b/ext/spl/examples/cachingrecursiveiterator.inc
index 4fa6b235c3..f0e060a0a7 100644
--- a/ext/spl/examples/cachingrecursiveiterator.inc
+++ b/ext/spl/examples/cachingrecursiveiterator.inc
@@ -25,4 +25,4 @@ class CachingRecursiveIterator extends RecursiveCachingIterator
{
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/callbackfilteriterator.inc b/ext/spl/examples/callbackfilteriterator.inc
index 51757012ec..4d49a52807 100644
--- a/ext/spl/examples/callbackfilteriterator.inc
+++ b/ext/spl/examples/callbackfilteriterator.inc
@@ -119,4 +119,4 @@ class CallbackFilterIterator extends FilterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/class_tree.php b/ext/spl/examples/class_tree.php
index fc021d5c01..a5d2d7b1ca 100755
--- a/ext/spl/examples/class_tree.php
+++ b/ext/spl/examples/class_tree.php
@@ -110,4 +110,4 @@ foreach($it as $c=>$v)
echo "$v\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/dba_array.php b/ext/spl/examples/dba_array.php
index f217c34546..7930348f7c 100755
--- a/ext/spl/examples/dba_array.php
+++ b/ext/spl/examples/dba_array.php
@@ -49,4 +49,4 @@ catch (exception $err) {
var_dump($err);
exit(1);
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/dba_dump.php b/ext/spl/examples/dba_dump.php
index 7ea8e76255..4c080729b2 100755
--- a/ext/spl/examples/dba_dump.php
+++ b/ext/spl/examples/dba_dump.php
@@ -39,4 +39,4 @@ foreach($db as $key => $val) {
echo "'$key' => '$val'\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/dbareader.inc b/ext/spl/examples/dbareader.inc
index 01de37e990..095c5c29d5 100644
--- a/ext/spl/examples/dbareader.inc
+++ b/ext/spl/examples/dbareader.inc
@@ -93,4 +93,4 @@ class DbaReader implements Iterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/directorygraphiterator.inc b/ext/spl/examples/directorygraphiterator.inc
index 3f0bb263e2..65a4dd7a38 100644
--- a/ext/spl/examples/directorygraphiterator.inc
+++ b/ext/spl/examples/directorygraphiterator.inc
@@ -31,4 +31,4 @@ class DirectoryGraphIterator extends DirectoryTreeIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/directorytree.inc b/ext/spl/examples/directorytree.inc
index 7bd9c2c597..20a15c815f 100644
--- a/ext/spl/examples/directorytree.inc
+++ b/ext/spl/examples/directorytree.inc
@@ -24,4 +24,4 @@ class DirectoryTree extends RecursiveIteratorIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/directorytree.php b/ext/spl/examples/directorytree.php
index dc26d6cc22..38759837f5 100755
--- a/ext/spl/examples/directorytree.php
+++ b/ext/spl/examples/directorytree.php
@@ -34,4 +34,4 @@ foreach(new LimitIterator(new DirectoryTreeIterator($argv[1]), @$argv[2], $lengt
echo $file . "\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/directorytreeiterator.inc b/ext/spl/examples/directorytreeiterator.inc
index 8454d9e305..52a4e114ed 100644
--- a/ext/spl/examples/directorytreeiterator.inc
+++ b/ext/spl/examples/directorytreeiterator.inc
@@ -51,4 +51,4 @@ class DirectoryTreeIterator extends RecursiveIteratorIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/findfile.inc b/ext/spl/examples/findfile.inc
index 02ab792433..afafa8124d 100644
--- a/ext/spl/examples/findfile.inc
+++ b/ext/spl/examples/findfile.inc
@@ -62,4 +62,4 @@ class FindFile extends FilterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/findfile.php b/ext/spl/examples/findfile.php
index 60146cbffd..7a850feddb 100755
--- a/ext/spl/examples/findfile.php
+++ b/ext/spl/examples/findfile.php
@@ -30,4 +30,4 @@ EOF;
if (!class_exists("FindFile", false)) require_once("findfile.inc");
foreach(new FindFile($argv[1], $argv[2]) as $file) echo $file->getPathname()."\n";
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/findregex.php b/ext/spl/examples/findregex.php
index 288c0924b1..284f985943 100755
--- a/ext/spl/examples/findregex.php
+++ b/ext/spl/examples/findregex.php
@@ -33,4 +33,4 @@ foreach(new RegexFindFile($argv[1], $argv[2]) as $file)
echo $file->getPathname()."\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/ini_groups.php b/ext/spl/examples/ini_groups.php
index 4c6c89bd70..540fc68c9c 100755
--- a/ext/spl/examples/ini_groups.php
+++ b/ext/spl/examples/ini_groups.php
@@ -38,4 +38,4 @@ foreach($it as $group) {
echo "$group\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/inigroups.inc b/ext/spl/examples/inigroups.inc
index cb2bb04a57..d33f169c4b 100644
--- a/ext/spl/examples/inigroups.inc
+++ b/ext/spl/examples/inigroups.inc
@@ -51,4 +51,4 @@ class IniGroups extends KeyFilter
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/keyfilter.inc b/ext/spl/examples/keyfilter.inc
index abc925ec43..21bb79a2d1 100644
--- a/ext/spl/examples/keyfilter.inc
+++ b/ext/spl/examples/keyfilter.inc
@@ -61,4 +61,4 @@ class KeyFilter extends FilterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/nocvsdir.php b/ext/spl/examples/nocvsdir.php
index 6993268945..d8e4362ab6 100755
--- a/ext/spl/examples/nocvsdir.php
+++ b/ext/spl/examples/nocvsdir.php
@@ -52,4 +52,4 @@ foreach($it as $pathname => $file)
echo $pathname."\n";
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/phar_from_dir.php b/ext/spl/examples/phar_from_dir.php
index d75788e840..23fcfc9777 100755
--- a/ext/spl/examples/phar_from_dir.php
+++ b/ext/spl/examples/phar_from_dir.php
@@ -47,4 +47,4 @@ foreach($dir as $file)
$phar->commit();
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/regexfindfile.inc b/ext/spl/examples/regexfindfile.inc
index d5dd722536..395624b8de 100644
--- a/ext/spl/examples/regexfindfile.inc
+++ b/ext/spl/examples/regexfindfile.inc
@@ -37,4 +37,4 @@ class RegexFindFile extends FindFile
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/searchiterator.inc b/ext/spl/examples/searchiterator.inc
index ff4963bc72..451ae08fd2 100644
--- a/ext/spl/examples/searchiterator.inc
+++ b/ext/spl/examples/searchiterator.inc
@@ -55,4 +55,4 @@ abstract class SearchIterator extends FilterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/examples/tests/examples.inc b/ext/spl/examples/tests/examples.inc
index feeba7db24..7502514659 100644
--- a/ext/spl/examples/tests/examples.inc
+++ b/ext/spl/examples/tests/examples.inc
@@ -20,4 +20,4 @@ foreach (new IncludeFiles(dirname(__FILE__). '/..', $classes) as $file)
require_once($file);
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/emptyiterator.inc b/ext/spl/internal/emptyiterator.inc
index ac80e79581..c7a05717a6 100644
--- a/ext/spl/internal/emptyiterator.inc
+++ b/ext/spl/internal/emptyiterator.inc
@@ -59,4 +59,4 @@ class EmptyIterator implements Iterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/filteriterator.inc b/ext/spl/internal/filteriterator.inc
index e11e467a10..27cb9c064f 100644
--- a/ext/spl/internal/filteriterator.inc
+++ b/ext/spl/internal/filteriterator.inc
@@ -124,4 +124,4 @@ abstract class FilterIterator implements OuterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/infiniteiterator.inc b/ext/spl/internal/infiniteiterator.inc
index 04d7827182..ffd728cf09 100644
--- a/ext/spl/internal/infiniteiterator.inc
+++ b/ext/spl/internal/infiniteiterator.inc
@@ -45,4 +45,4 @@ class InfiniteIterator extends IteratorIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/limititerator.inc b/ext/spl/internal/limititerator.inc
index 00c4122872..78c96d1049 100644
--- a/ext/spl/internal/limititerator.inc
+++ b/ext/spl/internal/limititerator.inc
@@ -131,4 +131,4 @@ class LimitIterator implements OuterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/norewinditerator.inc b/ext/spl/internal/norewinditerator.inc
index 8747a6116e..6b61dbba02 100644
--- a/ext/spl/internal/norewinditerator.inc
+++ b/ext/spl/internal/norewinditerator.inc
@@ -25,4 +25,4 @@ class NoRewindIterator extends IteratorIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/outeriterator.inc b/ext/spl/internal/outeriterator.inc
index f26d29da56..c2684ae51c 100644
--- a/ext/spl/internal/outeriterator.inc
+++ b/ext/spl/internal/outeriterator.inc
@@ -22,4 +22,4 @@ interface OuterIterator extends Iterator
function getInnerIterator();
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/parentiterator.inc b/ext/spl/internal/parentiterator.inc
index 69a223444d..e3c5605f83 100644
--- a/ext/spl/internal/parentiterator.inc
+++ b/ext/spl/internal/parentiterator.inc
@@ -29,4 +29,4 @@ class ParentIterator extends RecursiveFilterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursivearrayiterator.inc b/ext/spl/internal/recursivearrayiterator.inc
index 2059b97c1c..418fb0d9e1 100644
--- a/ext/spl/internal/recursivearrayiterator.inc
+++ b/ext/spl/internal/recursivearrayiterator.inc
@@ -56,4 +56,4 @@ class RecursiveArrayIterator extends ArrayIterator implements RecursiveIterator
private $ref;
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursivecachingiterator.inc b/ext/spl/internal/recursivecachingiterator.inc
index 3ae127ad94..fcbbda7042 100644
--- a/ext/spl/internal/recursivecachingiterator.inc
+++ b/ext/spl/internal/recursivecachingiterator.inc
@@ -96,4 +96,4 @@ class RecursiveCachingIterator extends CachingIterator implements RecursiveItera
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursivefilteriterator.inc b/ext/spl/internal/recursivefilteriterator.inc
index 87d98da885..2c0d9ef998 100644
--- a/ext/spl/internal/recursivefilteriterator.inc
+++ b/ext/spl/internal/recursivefilteriterator.inc
@@ -59,4 +59,4 @@ abstract class RecursiveFilterIterator extends FilterIterator implements Recursi
private $ref;
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursiveiterator.inc b/ext/spl/internal/recursiveiterator.inc
index 6e6c023486..a89fbd8577 100644
--- a/ext/spl/internal/recursiveiterator.inc
+++ b/ext/spl/internal/recursiveiterator.inc
@@ -27,4 +27,4 @@ interface RecursiveIterator extends Iterator
function getChildren();
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursiveiteratoriterator.inc b/ext/spl/internal/recursiveiteratoriterator.inc
index c22a92bf71..46110c9fb9 100644
--- a/ext/spl/internal/recursiveiteratoriterator.inc
+++ b/ext/spl/internal/recursiveiteratoriterator.inc
@@ -234,4 +234,4 @@ class RecursiveIteratorIterator implements OuterIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursiveregexiterator.inc b/ext/spl/internal/recursiveregexiterator.inc
index 4223104398..51cf6c415f 100644
--- a/ext/spl/internal/recursiveregexiterator.inc
+++ b/ext/spl/internal/recursiveregexiterator.inc
@@ -58,4 +58,4 @@ class RecursiveRegexIterator extends RegexIterator implements RecursiveIterator
private $ref;
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/recursivetreeiterator.inc b/ext/spl/internal/recursivetreeiterator.inc
index dfcdc05995..a2312414ea 100644
--- a/ext/spl/internal/recursivetreeiterator.inc
+++ b/ext/spl/internal/recursivetreeiterator.inc
@@ -129,4 +129,4 @@ class RecursiveTreeIterator extends RecursiveIteratorIterator
}
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/internal/seekableiterator.inc b/ext/spl/internal/seekableiterator.inc
index 7728636981..83e5588c74 100644
--- a/ext/spl/internal/seekableiterator.inc
+++ b/ext/spl/internal/seekableiterator.inc
@@ -45,4 +45,4 @@ interface SeekableIterator extends Iterator
function seek($index);
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/spl_heap.c b/ext/spl/spl_heap.c
index e7e7ea0bd0..c2e460b95a 100644
--- a/ext/spl/spl_heap.c
+++ b/ext/spl/spl_heap.c
@@ -1255,4 +1255,3 @@ PHP_MINIT_FUNCTION(spl_heap) /* {{{ */
* vim600: fdm=marker
* vim: noet sw=4 ts=4
*/
-
diff --git a/ext/spl/tests/testclass.class.inc b/ext/spl/tests/testclass.class.inc
index f5fe7411fa..c5d6034423 100644
--- a/ext/spl/tests/testclass.class.inc
+++ b/ext/spl/tests/testclass.class.inc
@@ -6,4 +6,4 @@ class TestClass
{
}
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/tests/testclass.inc b/ext/spl/tests/testclass.inc
index ceb24c877c..0684d2098d 100644
--- a/ext/spl/tests/testclass.inc
+++ b/ext/spl/tests/testclass.inc
@@ -2,4 +2,4 @@
echo __FILE__ . "\n";
-?> \ No newline at end of file
+?>
diff --git a/ext/spl/tests/testclass.php.inc b/ext/spl/tests/testclass.php.inc
index ceb24c877c..0684d2098d 100644
--- a/ext/spl/tests/testclass.php.inc
+++ b/ext/spl/tests/testclass.php.inc
@@ -2,4 +2,4 @@
echo __FILE__ . "\n";
-?> \ No newline at end of file
+?>