2
thirdparty/phing/BuildEvent.php
vendored
2
thirdparty/phing/BuildEvent.php
vendored
@@ -57,7 +57,7 @@ class BuildEvent extends EventObject {
|
||||
/**
|
||||
* A reference to the task
|
||||
*
|
||||
* @var PhingTask
|
||||
* @var AbstractTask
|
||||
*/
|
||||
protected $task;
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ include_once 'phing/RuntimeConfigurable.php';
|
||||
* @see Project#createTask()
|
||||
* @package phing
|
||||
*/
|
||||
abstract class PhingTask extends ProjectComponent {
|
||||
abstract class AbstractTask extends ProjectComponent {
|
||||
|
||||
/** owning Target object */
|
||||
protected $target;
|
||||
2
thirdparty/phing/UnknownElement.php
vendored
2
thirdparty/phing/UnknownElement.php
vendored
@@ -171,7 +171,7 @@ class UnknownElement extends TaskPhing {
|
||||
* @param UnknownElement $ue The unknwon element to create a task from
|
||||
* @param RuntimeConfigurable $w The wrapper object
|
||||
* @param boolean $onTopLevel Whether to treat this task as if it is top-level.
|
||||
* @return PhingTask The freshly created task
|
||||
* @return AbstractTask The freshly created task
|
||||
*/
|
||||
protected function makeTask(UnknownElement $ue, RuntimeConfigurable $w, $onTopLevel = false) {
|
||||
|
||||
|
||||
2
thirdparty/phing/parser/TaskHandler.php
vendored
2
thirdparty/phing/parser/TaskHandler.php
vendored
@@ -52,7 +52,7 @@ class TaskHandler extends AbstractHandler {
|
||||
/**
|
||||
* Reference to the task object that represents the currently parsed
|
||||
* target.
|
||||
* @var PhingTask
|
||||
* @var AbstractTask
|
||||
*/
|
||||
private $task;
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ class SequentialTask extends TaskPhing implements TaskContainer {
|
||||
|
||||
/**
|
||||
* Add a nested task to Sequential.
|
||||
* @param PhingTask $nestedTask Nested task to execute Sequential
|
||||
* @param AbstractTask $nestedTask Nested task to execute Sequential
|
||||
*/
|
||||
public function addTask(TaskPhing $nestedTask) {
|
||||
$this->nestedTasks[] = $nestedTask;
|
||||
|
||||
2
thirdparty/phing/util/SourceFileScanner.php
vendored
2
thirdparty/phing/util/SourceFileScanner.php
vendored
@@ -37,7 +37,7 @@ class SourceFileScanner {
|
||||
private $task;
|
||||
|
||||
/**
|
||||
* @param PhingTask The task we should log messages through
|
||||
* @param AbstractTask The task we should log messages through
|
||||
*/
|
||||
function __construct($task) {
|
||||
$this->task = $task;
|
||||
|
||||
Reference in New Issue
Block a user