Completed
Pull Request — master (#116)
by Janis
12:40
created
lib/Controller/JobController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.