classes/phing/BuildListener.php
Interface for build listeners.
Classes that implement a listener must extend this class and (faux)implement all methods that are decleard as dummies below.
- author
- Andreas Aderhold
- author
- Hans Lellelid
- package
- phing
- see
- \BuildEvent
- see
- \Project::addBuildListener()
- version
- $Revision: 526 $
\BuildListener
Interface for build listeners.
Classes that implement a listener must extend this class and (faux)implement all methods that are decleard as dummies below.
- see
- \BuildEvent
- see
- \Project::addBuildListener()
- author
- Andreas Aderhold
- author
- Hans Lellelid
- package
- phing
- version
- $Revision: 526 $
Methods

buildFinished(
\BuildEvent $event
)
:
Fired after the last target has finished.
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |

buildStarted(
\BuildEvent $event
)
:
Fired before any targets are started.
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |

messageLogged(
$event
)
:
Fired whenever a message is logged.
@param BuildEvent The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event |

targetFinished(
\BuildEvent $event
)
:
Fired when a target has finished.
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |
- see
- \BuildEvent#getException()

targetStarted(
\BuildEvent $event
)
:
Fired when a target is started.
| Name | Type | Description |
|---|---|---|
| $event | \BuildEvent | The BuildEvent |

taskFinished(
$event
)
:
Fired when a task has finished.
@param BuildEvent The BuildEvent
| Name | Type | Description |
|---|---|---|
| $event |