diff options
Diffstat (limited to 'ext/spl/examples')
-rw-r--r-- | ext/spl/examples/autoload.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/cachingrecursiveiterator.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/callbackfilteriterator.inc | 2 | ||||
-rwxr-xr-x | ext/spl/examples/class_tree.php | 2 | ||||
-rwxr-xr-x | ext/spl/examples/dba_array.php | 2 | ||||
-rwxr-xr-x | ext/spl/examples/dba_dump.php | 2 | ||||
-rw-r--r-- | ext/spl/examples/dbareader.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/directorygraphiterator.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/directorytree.inc | 2 | ||||
-rwxr-xr-x | ext/spl/examples/directorytree.php | 2 | ||||
-rw-r--r-- | ext/spl/examples/directorytreeiterator.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/findfile.inc | 2 | ||||
-rwxr-xr-x | ext/spl/examples/findfile.php | 2 | ||||
-rwxr-xr-x | ext/spl/examples/findregex.php | 2 | ||||
-rwxr-xr-x | ext/spl/examples/ini_groups.php | 2 | ||||
-rw-r--r-- | ext/spl/examples/inigroups.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/keyfilter.inc | 2 | ||||
-rwxr-xr-x | ext/spl/examples/nocvsdir.php | 2 | ||||
-rwxr-xr-x | ext/spl/examples/phar_from_dir.php | 2 | ||||
-rw-r--r-- | ext/spl/examples/regexfindfile.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/searchiterator.inc | 2 | ||||
-rw-r--r-- | ext/spl/examples/tests/examples.inc | 2 |
22 files changed, 22 insertions, 22 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 +?> |