Passed
Branch master (b830a9)
by Mark
01:14
created
action.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
 use Composer\InstalledVersions;
22 22
 
23
-require_once __DIR__ . '/vendor/autoload.php';
23
+require_once __DIR__.'/vendor/autoload.php';
24 24
 
25 25
 /**
26 26
  * DokuWiki Plugin geophp (Action Component).
@@ -52,6 +52,6 @@  discard block
 block discarded – undo
52 52
         $event->data['geophp']['version'] = $plugin_info['date'];
53 53
         $event->data['geophp']['geophp'] = $geoPHP;
54 54
         $event->data['geophp']['dwversion'] = $versionInfo['date'];
55
-        $event->data['geophp']['combinedversion'] = $versionInfo['date'] . '_' . $plugin_info['date'] . '_' . $geoPHP;
55
+        $event->data['geophp']['combinedversion'] = $versionInfo['date'].'_'.$plugin_info['date'].'_'.$geoPHP;
56 56
     }
57 57
 }
58 58
\ No newline at end of file
Please login to merge, or discard this patch.
_test/general.test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     final public function test_plugininfo(): void
34 34
     {
35
-        $file = __DIR__ . '/../plugin.info.txt';
35
+        $file = __DIR__.'/../plugin.info.txt';
36 36
         $this->assertFileExists($file);
37 37
 
38 38
         $info = confToHash($file);
Please login to merge, or discard this patch.