Passed
Branch master (26225b)
by Dominik
03:14
created
Components/FeaturePasswordForm/functions.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 add_filter('the_password_form', function ($output) {
9 9
     $context = Timber::get_context();
10 10
     $context['form'] = [
11
-      'url' => site_url('/wp-login.php?action=postpass', 'login_post')
11
+        'url' => site_url('/wp-login.php?action=postpass', 'login_post')
12 12
     ];
13 13
 
14 14
     return Timber::fetch('index.twig', $context);
Please login to merge, or discard this patch.
lib/Defaults.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         return $output;
26 26
     }
27 27
 
28
-  // this action needs to be removed by the user if they want to overwrite this functionality
28
+    // this action needs to be removed by the user if they want to overwrite this functionality
29 29
     public static function loadFunctionsFile($componentName)
30 30
     {
31 31
         $componentManager = ComponentManager::getInstance();
Please login to merge, or discard this patch.
lib/Init.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@
 block discarded – undo
70 70
         $pluginUrl = esc_url(admin_url('plugins.php'));
71 71
         $message = ["${pluginName} Plugin not activated. Make sure you activate the plugin on the <a href=\"${pluginUrl}\">plugin page</a>."];
72 72
         $options = [
73
-          'type' => 'error',
74
-          'title' => 'Flynt is missing a required plugin',
75
-          'dismissible' => false,
73
+            'type' => 'error',
74
+            'title' => 'Flynt is missing a required plugin',
75
+            'dismissible' => false,
76 76
         ];
77 77
 
78 78
         $manager->addNotice($message, $options);
Please login to merge, or discard this patch.