Passed
Pull Request — master (#116)
by Timo
02:02
created
Classes/Service/Tika/AppService.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
 class AppService extends AbstractService
39 39
 {
40 40
     /**
41
-    * @var array
42
-    */
41
+     * @var array
42
+     */
43 43
     protected static $supportedMimeTypes = [];
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
Classes/Service/Tika/SolrCellService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     public function extractText(FileInterface $file)
84 84
     {
85 85
         $localTempFilePath = $file->getForLocalProcessing(false);
86
-         /** @var Query $query */
86
+            /** @var Query $query */
87 87
         $query = GeneralUtility::makeInstance(Query::class);
88 88
         $query->setFile($localTempFilePath);
89 89
         $query->setExtractOnly(true);
Please login to merge, or discard this patch.
Classes/Service/Tika/AbstractService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      *
69 69
      * @param string $message Log message
70 70
      * @param array $data Optional data
71
-	 * @param integer $severity Severity: 0 is info, 1 is notice, 2 is warning, 3 is fatal error, -1 is "OK" message
71
+     * @param integer $severity Severity: 0 is info, 1 is notice, 2 is warning, 3 is fatal error, -1 is "OK" message
72 72
      * @return void
73 73
      */
74 74
     protected function log($message, array $data = [], $severity = 0)
Please login to merge, or discard this patch.