]> granicus.if.org Git - php/commitdiff
s/Throwable/Printable: Exception has become an internal class since I initially docum...
authorSebastian Bergmann <sebastian@php.net>
Sat, 25 Oct 2003 09:18:23 +0000 (09:18 +0000)
committerSebastian Bergmann <sebastian@php.net>
Sat, 25 Oct 2003 09:18:23 +0000 (09:18 +0000)
Zend/ZEND_CHANGES

index 5188769d21f70c1ae42fa2f81043c6294892f036..ee0997f665ed72b917c1a55b6b3658cda0ff21e1 100644 (file)
@@ -139,12 +139,12 @@ Changes in the Zend Engine 2.0
       Example:
 
         <?php
-        interface Throwable {
-          public function getMessage();
+        interface Printable {
+          public function dump();
         }
 
-        class Exception implements Throwable {
-          public function getMessage() {
+        class PrintableExample implements Printable {
+          public function dump() {
             // ...
           }
         }