1 | <?php |
||
11 | class FeatureManager extends JobManager { |
||
12 | /** |
||
13 | * @param ProjectModel $project |
||
14 | * @return array |
||
15 | */ |
||
16 | 1 | public function getProjectFeatures(ProjectModel $project) { |
|
19 | |||
20 | /** |
||
21 | * @param integer $id |
||
22 | * @return Feature |
||
23 | */ |
||
24 | 1 | public function getFeature($id) { |
|
30 | |||
31 | /** |
||
32 | * @param ProjectModel $project |
||
33 | * @param string $name |
||
34 | * @param string $description |
||
35 | * @param integer $status |
||
36 | * @param integer $productOwnerValue |
||
37 | * @param UserInterface $responsible |
||
38 | * @return Feature |
||
39 | */ |
||
40 | 1 | public function createProductOwnerFeature(ProjectModel $project, $name, $description, $status, $productOwnerValue = null, $responsible = null) { |
|
57 | } |
||
58 |