Completed
Push — master ( 54efaa...464bdd )
by Janis
04:10
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.
lib/Controller/PersonalSettingsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 * @return \OCP\AppFramework\Http\DataResponse
63 63
 	 */
64 64
 	public function getAll() {
65
-		return $this->handleNotFound(function () {
65
+		return $this->handleNotFound(function() {
66 66
 			return $this->service->getAllForPersonal($this->userId);
67 67
 		});
68 68
 	}
Please login to merge, or discard this patch.
lib/Command/CompleteOCR.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use OCA\Ocr\Service\ServiceException;
17 17
 use OCP\AppFramework\Db\DoesNotExistException;
18 18
 use OCP\AppFramework\Db\MultipleObjectsReturnedException;
19
-use OCP\ILogger;
20 19
 use Symfony\Component\Console\Command\Command;
21 20
 use Symfony\Component\Console\Input\InputArgument;
22 21
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.