Author: sb Date: Tue Dec 11 11:37:33 2007 New Revision: 6961 Log: - Work around an issue with PHP 5.1's Reflection API.
Modified: trunk/Workflow/ChangeLog trunk/Workflow/src/interfaces/execution_listener.php trunk/WorkflowEventLogTiein/ChangeLog trunk/WorkflowEventLogTiein/src/listener.php Modified: trunk/Workflow/ChangeLog ============================================================================== --- trunk/Workflow/ChangeLog [iso-8859-1] (original) +++ trunk/Workflow/ChangeLog [iso-8859-1] Tue Dec 11 11:37:33 2007 @@ -1,3 +1,7 @@ +- Changed default value for the ezcWorkflowExecutionListener::notify() method's + $type argument from self::::INFO to ezcWorkflowExecutionListener::INFO to work + around an issue in PHP 5.1's Reflection API that breaks the test suite. + 1.1rc1 - Wednesday 05 December 2007 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Modified: trunk/Workflow/src/interfaces/execution_listener.php ============================================================================== --- trunk/Workflow/src/interfaces/execution_listener.php [iso-8859-1] (original) +++ trunk/Workflow/src/interfaces/execution_listener.php [iso-8859-1] Tue Dec 11 11:37:33 2007 @@ -62,6 +62,6 @@ * @param string $message * @param int $type */ - public function notify( $message, $type = self::INFO ); + public function notify( $message, $type = ezcWorkflowExecutionListener::INFO ); } ?> Modified: trunk/WorkflowEventLogTiein/ChangeLog ============================================================================== --- trunk/WorkflowEventLogTiein/ChangeLog [iso-8859-1] (original) +++ trunk/WorkflowEventLogTiein/ChangeLog [iso-8859-1] Tue Dec 11 11:37:33 2007 @@ -1,3 +1,7 @@ +- Changed default value for the ezcWorkflowEventLogListener::notify() method's + $type argument from self::::INFO to ezcWorkflowEventLogListener::INFO to work + around an issue in PHP 5.1's Reflection API that breaks the test suite. + 1.1beta1 - Wednesday 28 November 2007 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Modified: trunk/WorkflowEventLogTiein/src/listener.php ============================================================================== --- trunk/WorkflowEventLogTiein/src/listener.php [iso-8859-1] (original) +++ trunk/WorkflowEventLogTiein/src/listener.php [iso-8859-1] Tue Dec 11 11:37:33 2007 @@ -42,7 +42,7 @@ * @param string $message * @param int $type */ - public function notify( $message, $type = self::INFO ) + public function notify( $message, $type = ezcWorkflowEventLogListener::INFO ) { $this->log->log( $message, $type ); } -- svn-components mailing list svn-components@lists.ez.no http://lists.ez.no/mailman/listinfo/svn-components