Passed
Push — feature/rebusify ( 103190...b1503f )
by Paul
05:08 queued 13s
created
views/partials/styles/divi/response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <p class="glsr-form-message et-pb-contact-message et_pb_contact_field {{ class }}">
4 4
     {{ message }}
Please login to merge, or discard this patch.
views/partials/styles/divi/field_checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <p class="glsr-field et_pb_contact_field {{ class }}">
4 4
     <span class="et_pb_contact_field_options_wrapper">
Please login to merge, or discard this patch.
views/partials/styles/divi/field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <p class="glsr-field et_pb_contact_field {{ class }}">
4 4
     {{ label }}
Please login to merge, or discard this patch.
views/partials/styles/bootstrap_4_custom/field_checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div class="glsr-field form-group custom-control custom-checkbox {{ class }}">
4 4
     {{ field }}
Please login to merge, or discard this patch.
views/partials/styles/materialize/reviews-form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div class="glsr-form-wrap">
4 4
     <form class="{{ class }}" id="{{ id }}" method="post" enctype="multipart/form-data">
Please login to merge, or discard this patch.
views/partials/styles/materialize/response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div class="glsr-form-message wpcf7-response-output wpcf7-validation-errors {{ class }}">
4 4
     {{ message }}
Please login to merge, or discard this patch.
views/partials/styles/materialize/field_checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <p class="glsr-field {{ class }}">
4 4
     {{ field }}
Please login to merge, or discard this patch.
views/partials/styles/twentynineteen/field_checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <p class="glsr-field {{ class }}">
4 4
     <span class="glsr-field-choice">
Please login to merge, or discard this patch.
views/partials/editor/pinned.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div id="misc-pub-pinned" class="misc-pub-section misc-pub-pinned">
4
-    <label for="pinned-status"><?= __('Pinned', 'site-reviews'); ?>:</label>
4
+    <label for="pinned-status"><?= __( 'Pinned', 'site-reviews' ); ?>:</label>
5 5
     <span id="pinned-status-text" class="pinned-status-text"><?= $pinned ? $context['yes'] : $context['no']; ?></span>
6 6
     <a href="#pinned-status" class="edit-pinned-status hide-if-no-js">
7
-        <span aria-hidden="true"><?= __('Edit', 'site-reviews'); ?></span>
8
-        <span class="screen-reader-text"><?= __('Edit pinned status', 'site-reviews'); ?></span>
7
+        <span aria-hidden="true"><?= __( 'Edit', 'site-reviews' ); ?></span>
8
+        <span class="screen-reader-text"><?= __( 'Edit pinned status', 'site-reviews' ); ?></span>
9 9
     </a>
10 10
     <div id="pinned-status-select" class="pinned-status-select hide-if-js">
11
-        <input type="hidden" id="hidden-pinned-status" value="<?= intval($pinned); ?>">
11
+        <input type="hidden" id="hidden-pinned-status" value="<?= intval( $pinned ); ?>">
12 12
         <select name="pinned" id="pinned-status">
13
-            <option value="1"<?php selected($pinned, false); ?>><?= __('Pin', 'site-reviews'); ?></option>
14
-            <option value="0"<?php selected($pinned, true); ?>><?= __('Unpin', 'site-reviews'); ?></option>
13
+            <option value="1"<?php selected( $pinned, false ); ?>><?= __( 'Pin', 'site-reviews' ); ?></option>
14
+            <option value="0"<?php selected( $pinned, true ); ?>><?= __( 'Unpin', 'site-reviews' ); ?></option>
15 15
         </select>
16
-        <a href="#pinned-status" class="save-pinned-status hide-if-no-js button" data-no="{{ no }}" data-yes="{{ yes }}"><?= __('OK', 'site-reviews'); ?></a>
17
-        <a href="#pinned-status" class="cancel-pinned-status hide-if-no-js button-cancel"><?= __('Cancel', 'site-reviews'); ?></a>
16
+        <a href="#pinned-status" class="save-pinned-status hide-if-no-js button" data-no="{{ no }}" data-yes="{{ yes }}"><?= __( 'OK', 'site-reviews' ); ?></a>
17
+        <a href="#pinned-status" class="cancel-pinned-status hide-if-no-js button-cancel"><?= __( 'Cancel', 'site-reviews' ); ?></a>
18 18
     </div>
19 19
 </div>
Please login to merge, or discard this patch.