diff options
author | Marcus Boerger <helly@php.net> | 2005-12-16 22:29:02 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-12-16 22:29:02 +0000 |
commit | 69fdadf1a03ac3e9dbcaa366adf6faa872e08b59 (patch) | |
tree | cf7a449a1fb9f70820a9592f3793c6e7bdb006df | |
parent | 10f77a5d713c1e206cd72b5ec85a755da5fd52d4 (diff) | |
download | php-git-69fdadf1a03ac3e9dbcaa366adf6faa872e08b59.tar.gz |
- Add SplTempFileObject to output
-rwxr-xr-x | ext/spl/php_spl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index a003594f23..4d544b69d3 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -188,6 +188,7 @@ PHP_FUNCTION(class_implements) SPL_ADD_CLASS(SplObjectStorage, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(SplObserver, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(SplSubject, z_list, sub, allow, ce_flags); \ + SPL_ADD_CLASS(SplTempFileObject, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(UnderflowException, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(UnexpectedValueException, z_list, sub, allow, ce_flags); \ |