Passed
Push — analysis-z4G20e ( fbc4ca )
by Greg
09:39
created
app/Module/TopGivenNamesModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
         extract($cfg, EXTR_OVERWRITE);
67 67
 
68
-        $stats   = new Stats($tree);
68
+        $stats = new Stats($tree);
69 69
 
70 70
         switch ($infoStyle) {
71 71
             case 'list':
Please login to merge, or discard this patch.
app/Http/Controllers/SetupController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -432,11 +432,11 @@
 block discarded – undo
432 432
             /* I18N: a program feature */
433 433
             'simplexml' => I18N::translate('reporting'),
434 434
         ];
435
-        $settings   = [
435
+        $settings = [
436 436
             /* I18N: a program feature */
437 437
             'file_uploads' => I18N::translate('file upload capability'),
438 438
         ];
439
-        $warnings   = [];
439
+        $warnings = [];
440 440
 
441 441
         foreach ($extensions as $extension => $features) {
442 442
             if (!extension_loaded($extension)) {
Please login to merge, or discard this patch.
app/Module.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
                     $modules[$module->getName()] = $module;
159 159
                 } else {
160 160
                     // The module has been deleted or is broken? Disable it.
161
-                    Log::addConfigurationLog("Module {$module_name} is missing or broken - disabling it. ", null);
161
+                    Log::addConfigurationLog("module {$module_name} is missing or broken - disabling it. ", null);
162 162
                     DB::table('module')
163 163
                         ->where('module_name', '=', $module_name)
164 164
                         ->update(['status' => 'disabled']);
Please login to merge, or discard this patch.
app/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 {
27 27
     public const RECORD_TYPE = 'SOUR';
28 28
 
29
-    protected const ROUTE_NAME  = 'source';
29
+    protected const ROUTE_NAME = 'source';
30 30
 
31 31
     /**
32 32
      * Get an instance of a source object. For single records,
Please login to merge, or discard this patch.
app/Theme/MinimalTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Where are our CSS, JS and other assets?
29 29
      */
30 30
     protected const THEME_DIR  = 'minimal';
31
-    public const ASSET_DIR  = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
31
+    public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
32 32
     protected const STYLESHEET = self::ASSET_DIR . 'style.css';
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
app/Theme/XeneaTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Where are our CSS, JS and other assets?
29 29
      */
30 30
     protected const THEME_DIR  = 'xenea';
31
-    public const ASSET_DIR  = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
31
+    public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
32 32
     protected const STYLESHEET = self::ASSET_DIR . 'style.css';
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
app/Theme/ColorsTheme.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
      * Where are our CSS, JS and other assets?
33 33
      */
34 34
     protected const THEME_DIR  = 'colors';
35
-    public const ASSET_DIR  = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
35
+    public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
36 36
     protected const STYLESHEET = self::ASSET_DIR . 'style.css';
37 37
 
38 38
     /** @var string[] A list of color palettes */
Please login to merge, or discard this patch.
app/Theme/FabTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * Where are our CSS, JS and other assets?
30 30
      */
31 31
     protected const THEME_DIR  = 'fab';
32
-    public const ASSET_DIR  = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
32
+    public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
33 33
     protected const STYLESHEET = self::ASSET_DIR . 'style.css';
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
app/Theme/CloudsTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * Where are our CSS, JS and other assets?
31 31
      */
32 32
     protected const THEME_DIR  = 'clouds';
33
-    public const ASSET_DIR  = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
33
+    public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/';
34 34
     protected const STYLESHEET = self::ASSET_DIR . 'style.css';
35 35
 
36 36
     /**
Please login to merge, or discard this patch.