Merged in bugfix/HOR-3620 (pull request #5861)

Bugfix/HOR-3620
This commit is contained in:
David Callizaya
2017-08-04 22:21:24 +00:00
6 changed files with 6 additions and 6 deletions

View File

@@ -57,7 +57,7 @@ class BuildEvent extends EventObject {
/** /**
* A reference to the task * A reference to the task
* *
* @var PhingTask * @var AbstractTask
*/ */
protected $task; protected $task;

View File

@@ -33,7 +33,7 @@ include_once 'phing/RuntimeConfigurable.php';
* @see Project#createTask() * @see Project#createTask()
* @package phing * @package phing
*/ */
abstract class PhingTask extends ProjectComponent { abstract class AbstractTask extends ProjectComponent {
/** owning Target object */ /** owning Target object */
protected $target; protected $target;

View File

@@ -171,7 +171,7 @@ class UnknownElement extends TaskPhing {
* @param UnknownElement $ue The unknwon element to create a task from * @param UnknownElement $ue The unknwon element to create a task from
* @param RuntimeConfigurable $w The wrapper object * @param RuntimeConfigurable $w The wrapper object
* @param boolean $onTopLevel Whether to treat this task as if it is top-level. * @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) { protected function makeTask(UnknownElement $ue, RuntimeConfigurable $w, $onTopLevel = false) {

View File

@@ -52,7 +52,7 @@ class TaskHandler extends AbstractHandler {
/** /**
* Reference to the task object that represents the currently parsed * Reference to the task object that represents the currently parsed
* target. * target.
* @var PhingTask * @var AbstractTask
*/ */
private $task; private $task;

View File

@@ -39,7 +39,7 @@ class SequentialTask extends TaskPhing implements TaskContainer {
/** /**
* Add a nested task to Sequential. * 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) { public function addTask(TaskPhing $nestedTask) {
$this->nestedTasks[] = $nestedTask; $this->nestedTasks[] = $nestedTask;

View File

@@ -37,7 +37,7 @@ class SourceFileScanner {
private $task; private $task;
/** /**
* @param PhingTask The task we should log messages through * @param AbstractTask The task we should log messages through
*/ */
function __construct($task) { function __construct($task) {
$this->task = $task; $this->task = $task;