Completed
Pull Request — master (#1)
by
unknown
16:42
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/Utils/AdminNoticeManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * clone
46 46
      *
47 47
      * Prevent cloning with 'protected' keyword
48
-    **/
48
+     **/
49 49
     protected function __clone()
50 50
     {
51 51
     }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * constructor
55 55
      *
56 56
      * Prevent instantiation with 'protected' keyword
57
-    **/
57
+     **/
58 58
     protected function __construct()
59 59
     {
60 60
     }
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/ComponentManager.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,20 +16,20 @@
 block discarded – undo
16 16
         return self::$instance;
17 17
     }
18 18
 
19
-  /**
20
-   * clone
21
-   *
22
-   * Prevent cloning with 'protected' keyword
23
-  **/
19
+    /**
20
+     * clone
21
+     *
22
+     * Prevent cloning with 'protected' keyword
23
+     **/
24 24
     protected function __clone()
25 25
     {
26 26
     }
27 27
 
28
-  /**
29
-   * constructor
30
-   *
31
-   * Prevent instantiation with 'protected' keyword
32
-  **/
28
+    /**
29
+     * constructor
30
+     *
31
+     * Prevent instantiation with 'protected' keyword
32
+     **/
33 33
     protected function __construct()
34 34
     {
35 35
     }
Please login to merge, or discard this patch.