Completed
Pull Request — master (#6)
by Janis
03:08
created
appinfo/routes.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
  * it's instantiated in there
19 19
  */
20 20
 return [
21
-    'routes' => [
21
+	'routes' => [
22 22
 		['name' => 'ocr#process', 'url' => '/process', 'verb' => 'GET'],
23 23
 		['name' => 'ocr#languages', 'url' => '/languages', 'verb' => 'GET'],
24
-    ]
24
+	]
25 25
 ];
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
worker/GearmanOCRWorker.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 $worker->addServer('127.0.0.1',4730);
5 5
 
6 6
 $worker->addFunction(/**
7
-					 * @param GearmanJob $job
8
-					 */
7
+ * @param GearmanJob $job
8
+ */
9 9
 	"ocr", function(GearmanJob $job) {
10 10
 	$workload = json_decode($job->workload());
11 11
 	if($workload->type == 'tess'){
Please login to merge, or discard this patch.