1 | <?php |
||
18 | class ProjectService extends AbstractService implements \Marek\Toggable\API\Toggl\ProjectServiceInterface |
||
19 | { |
||
20 | /** |
||
21 | * @inheritDoc |
||
22 | */ |
||
23 | 2 | public function getProjectData($projectId) |
|
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | 1 | public function createProject(\Marek\Toggable\API\Toggl\Values\Project\Project $project) |
|
47 | |||
48 | /** |
||
49 | * @inheritDoc |
||
50 | */ |
||
51 | 1 | public function updateProject(\Marek\Toggable\API\Toggl\Values\Project\Project $project) |
|
61 | |||
62 | /** |
||
63 | * @inheritDoc |
||
64 | */ |
||
65 | 2 | public function deleteProject($projectId) |
|
75 | |||
76 | /** |
||
77 | * @inheritDoc |
||
78 | */ |
||
79 | public function getProjectUsers($projectId) { |
||
82 | |||
83 | /** |
||
84 | * @inheritDoc |
||
85 | */ |
||
86 | public function getProjectTasks($projectId) { |
||
89 | |||
90 | /** |
||
91 | * @inheritDoc |
||
92 | */ |
||
93 | public function deleteMultipleProjects(array $projectIds) { |
||
96 | |||
97 | /** |
||
98 | * @inheritDoc |
||
99 | */ |
||
100 | 3 | protected function delegateHydrateAndReturnResponse(\Marek\Toggable\API\Http\Request\RequestInterface $request) |
|
110 | } |
||
111 |