diff --git a/thirdparty/phing/BuildEvent.php b/thirdparty/phing/BuildEvent.php index 6738fcdd6..2a9548c9e 100644 --- a/thirdparty/phing/BuildEvent.php +++ b/thirdparty/phing/BuildEvent.php @@ -57,7 +57,7 @@ class BuildEvent extends EventObject { /** * A reference to the task * - * @var PhingTask + * @var AbstractTask */ protected $task; diff --git a/thirdparty/phing/PhingTask.php b/thirdparty/phing/Task.php similarity index 99% rename from thirdparty/phing/PhingTask.php rename to thirdparty/phing/Task.php index 924bbcbb1..fd7e5b7ac 100644 --- a/thirdparty/phing/PhingTask.php +++ b/thirdparty/phing/Task.php @@ -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; diff --git a/thirdparty/phing/UnknownElement.php b/thirdparty/phing/UnknownElement.php index 244e10926..95daa0e0b 100644 --- a/thirdparty/phing/UnknownElement.php +++ b/thirdparty/phing/UnknownElement.php @@ -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) { diff --git a/thirdparty/phing/parser/TaskHandler.php b/thirdparty/phing/parser/TaskHandler.php index 5f6f6ad80..16d162b74 100644 --- a/thirdparty/phing/parser/TaskHandler.php +++ b/thirdparty/phing/parser/TaskHandler.php @@ -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; diff --git a/thirdparty/phing/tasks/system/SequentialTask.php b/thirdparty/phing/tasks/system/SequentialTask.php index cbc0229e4..0fe3a25da 100644 --- a/thirdparty/phing/tasks/system/SequentialTask.php +++ b/thirdparty/phing/tasks/system/SequentialTask.php @@ -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; diff --git a/thirdparty/phing/util/SourceFileScanner.php b/thirdparty/phing/util/SourceFileScanner.php index d737157cf..883959601 100644 --- a/thirdparty/phing/util/SourceFileScanner.php +++ b/thirdparty/phing/util/SourceFileScanner.php @@ -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;