Todo List
EventObject | --BuildEvent
We have three sources of events all handled by this class:
Events are all fired from the project class by creating an event object using this class and passing it to the listeners.
[line 83]
[line 68]
[line 76]
[line 49]
[line 55]
[line 62]
BuildEvent __construct( object project $source)
Exception getException( )
This field will only be set for "taskFinished", "targetFinished", and "buildFinished" events.
string getMessage( )
integer getPriority( )
Project getProject( )
The reference to the project instance is set by the constructor if this event was fired from the project class.
Target getTarget( )
The reference to the target instance is set by the constructor if this event was fired from the target class.
Task getTask( )
The reference to the task instance is set by the constructor if this event was fired within a task.
void setException( Exception $exception)
void setMessage( string $message, integer $priority)