Passed
Push — master ( e689d2...d40980 )
by Mark
02:01
created
lang/en/settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  */
8 8
  
9 9
 // for the configuration manager
10
-$lang['keyword_source']  = 'Source of the values for the description header';
10
+$lang['keyword_source'] = 'Source of the values for the description header';
11 11
 $lang['global_description'] = 'Description of a global header';
12 12
 
13 13
 //Setup VIM: ex: et ts=2 :
Please login to merge, or discard this patch.
lang/de/settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 // for the configuration manager
10
-$lang['keyword_source']  = 'Quelle, aus der der Header generiert werden soll';
10
+$lang['keyword_source'] = 'Quelle, aus der der Header generiert werden soll';
11 11
 $lang['global_description'] = 'Beschreibung für einen globalen Header';
12 12
 
13 13
 //Setup VIM: ex: et ts=2 :
Please login to merge, or discard this patch.
conf/default.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Options for the description Plugin
4 4
  */
5 5
 
6
-$conf['keyword_source']  = 'abstract';    // where to get the keywords from
7
-$conf['global_description'] = '';         // Take this as keyword string when option is set to 'global'
6
+$conf['keyword_source'] = 'abstract'; // where to get the keywords from
7
+$conf['global_description'] = ''; // Take this as keyword string when option is set to 'global'
8 8
 
9 9
 //Setup VIM: ex: et ts=2 :
Please login to merge, or discard this patch.
conf/metadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * @author    Matthias Schulte <[email protected]>
7 7
  */
8 8
 
9
-$meta['keyword_source']  = array('multichoice','_choices' => array('abstract', 'global','syntax'));
9
+$meta['keyword_source'] = array('multichoice', '_choices' => array('abstract', 'global', 'syntax'));
10 10
 $meta['global_description'] = array('string');
11 11
 
12 12
 //Setup VIM: ex: et ts=2 :
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
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function test_plugininfo(): void
24 24
     {
25
-        $file = __DIR__ . '/../plugin.info.txt';
25
+        $file = __DIR__.'/../plugin.info.txt';
26 26
         $this->assertFileExists($file);
27 27
 
28 28
         $info = confToHash($file);
Please login to merge, or discard this patch.