ProcessMaker-MA "Arreglo de oraciones en el PHPDoc"

- Arreglo de oraciones en el PHPDoc
This commit is contained in:
Victor Saisa Lopez
2013-12-06 11:26:31 -04:00
parent 54061ff8d7
commit 1d7796505f
4 changed files with 28 additions and 28 deletions

View File

@@ -4,7 +4,7 @@ namespace BusinessModel;
class Step
{
/**
* Create Step of an Task
* Create Step for a Task
*
* @param string $taskUid
* @param string $processUid
@@ -32,7 +32,7 @@ class Step
}
/**
* Update Step of an Task
* Update Step of a Task
*
* @param string $stepUid
* @param array $arrayData
@@ -75,7 +75,7 @@ class Step
}
/**
* Delete Step of an Task
* Delete Step of a Task
*
* @param string $stepUid
*
@@ -109,9 +109,9 @@ class Step
}
/**
* Get data of an Step
* Get data of a Step
*
* @param string $stepUid Unique id of the Step
* @param string $stepUid Unique id of Step
*
* return array
*/
@@ -199,9 +199,9 @@ class Step
}
/**
* Get data of unique ids of an Step (Unique id of Task and Process)
* Get data of unique ids of a Step (Unique id of Task and Process)
*
* @param string $stepUid Unique id of the Step
* @param string $stepUid Unique id of Step
*
* return array
*/
@@ -226,9 +226,9 @@ class Step
}
/**
* Get available triggers for an Step
* Get available triggers of a Step
*
* @param string $stepUid Unique id of the Step
* @param string $stepUid Unique id of Step
* @param string $type Type (BEFORE, AFTER)
*
* return array
@@ -292,9 +292,9 @@ class Step
}
/**
* Get all triggers of an Step
* Get all triggers of a Step
*
* @param string $stepUid Unique id of the Step
* @param string $stepUid Unique id of Step
*
* return array
*/

View File

@@ -4,10 +4,10 @@ namespace BusinessModel\Step;
class Trigger
{
/**
* Assign Trigger to an Step
* Assign Trigger to a Step
*
* @param string $stepUid Unique id of the Step
* @param string $triggerUid Unique id of the Trigger
* @param string $stepUid Unique id of Step
* @param string $triggerUid Unique id of Trigger
* @param string $type Type (BEFORE, AFTER)
* @param array $arrayData Data
*
@@ -38,10 +38,10 @@ class Trigger
}
/**
* Update Trigger of an Step
* Update Trigger of a Step
*
* @param string $stepUid Unique id of the Step
* @param string $triggerUid Unique id of the Trigger
* @param string $stepUid Unique id of Step
* @param string $triggerUid Unique id of Trigger
* @param string $type Type (BEFORE, AFTER)
* @param array $arrayData Data
*
@@ -81,10 +81,10 @@ class Trigger
}
/**
* Delete Trigger of an Step
* Delete Trigger of a Step
*
* @param string $stepUid Unique id of the Step
* @param string $triggerUid Unique id of the Trigger
* @param string $stepUid Unique id of Step
* @param string $triggerUid Unique id of Trigger
* @param string $type Type (BEFORE, AFTER)
*
* return void

View File

@@ -248,9 +248,9 @@ class Task
}
/**
* Get data of unique ids of an Task (Unique id of Process)
* Get data of unique ids of a Task (Unique id of Process)
*
* @param string $taskUid Unique id of the Task
* @param string $taskUid Unique id of Task
*
* return array
*/
@@ -274,9 +274,9 @@ class Task
}
/**
* Get available steps of an Task
* Get available steps of a Task
*
* @param string $taskUid
* @param string $taskUid Unique id of Task
*
* return array
*/
@@ -490,9 +490,9 @@ class Task
}
/**
* Get all steps of an Task
* Get all steps of a Task
*
* @param string $taskUid Unique id of the Task
* @param string $taskUid Unique id of Task
*
* return array
*/

View File

@@ -44,9 +44,9 @@ class Trigger
}
/**
* Get data of an Trigger
* Get data of a Trigger
*
* @param string $triggerUid Unique id of the Trigger
* @param string $triggerUid Unique id of Trigger
*
* return array
*/