Completed
Push — componentlibrary_templateConfi... ( bbe8e2 )
by Dominik
02:00
created
Features/PasswordForm/functions.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
     $context = Timber::get_context();
10 10
     $post = new Post();
11 11
     $context['form'] = [
12
-      'url' => site_url('/wp-login.php?action=postpass', 'login_post'),
13
-      'inputId' => empty($post->id) ? mt_rand() : $post->id
12
+        'url' => site_url('/wp-login.php?action=postpass', 'login_post'),
13
+        'inputId' => empty($post->id) ? mt_rand() : $post->id
14 14
     ];
15 15
 
16 16
     return Timber::fetch('index.twig', $context);
Please login to merge, or discard this patch.
Features/AdminNotices/AdminNoticeManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * clone
29 29
      *
30 30
      * Prevent cloning with 'protected' keyword
31
-    **/
31
+     **/
32 32
     protected function __clone()
33 33
     {
34 34
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * constructor
38 38
      *
39 39
      * Prevent instantiation with 'protected' keyword
40
-    **/
40
+     **/
41 41
     protected function __construct()
42 42
     {
43 43
     }
Please login to merge, or discard this patch.
Components/DocumentDefault/functions.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,24 +8,24 @@
 block discarded – undo
8 8
 add_action('wp_enqueue_scripts', function () {
9 9
     Component::enqueueAssets('DocumentDefault', [
10 10
     [
11
-      'name' => 'console-polyfill',
12
-      'type' => 'script',
13
-      'path' => 'vendor/console.js'
11
+        'name' => 'console-polyfill',
12
+        'type' => 'script',
13
+        'path' => 'vendor/console.js'
14 14
     ],
15 15
     [
16
-      'name' => 'babel-polyfill',
17
-      'type' => 'script',
18
-      'path' => 'vendor/babel-polyfill.js'
16
+        'name' => 'babel-polyfill',
17
+        'type' => 'script',
18
+        'path' => 'vendor/babel-polyfill.js'
19 19
     ],
20 20
     [
21
-      'name' => 'document-register-element',
22
-      'type' => 'script',
23
-      'path' => 'vendor/document-register-element.js'
21
+        'name' => 'document-register-element',
22
+        'type' => 'script',
23
+        'path' => 'vendor/document-register-element.js'
24 24
     ],
25 25
     [
26
-      'name' => 'normalize',
27
-      'path' => 'vendor/normalize.css',
28
-      'type' => 'style'
26
+        'name' => 'normalize',
27
+        'path' => 'vendor/normalize.css',
28
+        'type' => 'style'
29 29
     ],
30 30
     [
31 31
         'name' => 'lazysizes',
Please login to merge, or discard this patch.