summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-02-17 00:16:00 +0000
committerMarcus Boerger <helly@php.net>2005-02-17 00:16:00 +0000
commite9b635b6e76ad32a31b6e7cd808df198e67020db (patch)
treef86bc55d101f8e486423f4e59a76c344f38e6879
parent3f9dc8814e896105080f731851a9341937076308 (diff)
downloadphp-git-e9b635b6e76ad32a31b6e7cd808df198e67020db.tar.gz
- For now we need the simple way
-rwxr-xr-xext/spl/spl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl.php b/ext/spl/spl.php
index 49309bdf11..c65a080eda 100755
--- a/ext/spl/spl.php
+++ b/ext/spl/spl.php
@@ -696,9 +696,9 @@ interface Subject
*/
function detach(Observer $observer);
- /** @param $ignore optional observer that should not be notified
+ /** Notify all observers
*/
- function notify([Observer $ignore = NULL]);
+ function notify();
}
?>