@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function process($languages, $files, $replace) { |
66 | 66 | return $this->handleNotFound( |
67 | - function () use ($languages, $files, $replace) { |
|
67 | + function() use ($languages, $files, $replace) { |
|
68 | 68 | return $this->service->process($languages, $files, $replace); |
69 | 69 | }); |
70 | 70 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function getAllJobs() { |
78 | 78 | return $this->handleNotFound( |
79 | - function () { |
|
79 | + function() { |
|
80 | 80 | return $this->service->getAllJobsForUser($this->userId); |
81 | 81 | }); |
82 | 82 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | public function deleteJob($id) { |
91 | 91 | return $this->handleNotFound( |
92 | - function () use ($id) { |
|
92 | + function() use ($id) { |
|
93 | 93 | return $this->service->deleteJob($id, $this->userId); |
94 | 94 | }); |
95 | 95 | } |