Author: ts
Date: Thu Jan  3 20:27:55 2008
New Revision: 7061

Log:
- Fixed NULL -> null.

Modified:
    trunk/Execution/src/execution.php
    trunk/Execution/src/handlers/basic_handler.php
    trunk/Execution/src/interfaces/execution_handler.php

Modified: trunk/Execution/src/execution.php
==============================================================================
--- trunk/Execution/src/execution.php [iso-8859-1] (original)
+++ trunk/Execution/src/execution.php [iso-8859-1] Thu Jan  3 20:27:55 2008
@@ -19,7 +19,7 @@
  * <?php
  * class myExecutionHandler extends ezcExecutionBasicErrorHandler
  * {
- *     public static function onError( Exception $exception = NULL )
+ *     public static function onError( Exception $exception = null )
  *     {
  *         echo "Error!\n";
  *         // If you want, you can use the parent's onError method, but that

Modified: trunk/Execution/src/handlers/basic_handler.php
==============================================================================
--- trunk/Execution/src/handlers/basic_handler.php [iso-8859-1] (original)
+++ trunk/Execution/src/handlers/basic_handler.php [iso-8859-1] Thu Jan  3 
20:27:55 2008
@@ -34,7 +34,7 @@
      *
      * @return void
      */
-    static public function onError( Exception $e = NULL )
+    static public function onError( Exception $e = null )
     {
         echo <<<END
 This application stopped in an unclean way. Please contact the site

Modified: trunk/Execution/src/interfaces/execution_handler.php
==============================================================================
--- trunk/Execution/src/interfaces/execution_handler.php [iso-8859-1] (original)
+++ trunk/Execution/src/interfaces/execution_handler.php [iso-8859-1] Thu Jan  
3 20:27:55 2008
@@ -30,6 +30,6 @@
      * @param Exception $e 
      * @return void
      */
-    static public function onError( Exception $e = NULL );
+    static public function onError( Exception $e = null );
 }
 ?>


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to