summaryrefslogtreecommitdiff
path: root/ext/spl/TODO
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-05-01 23:28:28 +0000
committerMarcus Boerger <helly@php.net>2003-05-01 23:28:28 +0000
commitb5a70a72d13a3951317466cb8a671eafffffc359 (patch)
tree09f1ec55eca84f6c7bd183415b3999e78311d703 /ext/spl/TODO
parent0d46a490f7abc6039fd98afc3c0a62ce111551c8 (diff)
downloadphp-git-b5a70a72d13a3951317466cb8a671eafffffc359.tar.gz
Add spl extension
Diffstat (limited to 'ext/spl/TODO')
-rwxr-xr-xext/spl/TODO13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/spl/TODO b/ext/spl/TODO
new file mode 100755
index 0000000000..5311ef6c11
--- /dev/null
+++ b/ext/spl/TODO
@@ -0,0 +1,13 @@
+This is the ToDo of ext/spl:
+
+- spl::array_access cals set() which is supposed to return a value.
+ Currently you *must* return a value even when it is not used.
+ $obj[$idx] = $val; // doesn't use the return value
+ $x = $obj[$idx] = $val; // here it is used
+ Since array_access.phpt is a test with a return value there
+ should be a test without a return value. Maybe an error message
+ is required in case there is no return value.
+
+- spl::array_access_ex is not completely done and not tested.
+
+If you have further questions: mailto:helly@php.net