Passed
Push — master ( fb6e64...ead742 )
by Nirjhar
04:32
created
complete-google-seo-scan.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,9 @@
 block discarded – undo
11 11
  License: GPLv3
12 12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
13 13
  */
14
-if (!defined('ABSPATH')) exit;
14
+if (!defined('ABSPATH')) {
15
+	exit;
16
+}
15 17
 
16 18
 
17 19
 //Define basic names
Please login to merge, or discard this patch.
Plugin/Lib/table.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\Cgss\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+	exit;
6
+}
5 7
 
6 8
 
7 9
 use \WP_List_Table;
Please login to merge, or discard this patch.
Plugin/Lib/script.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,9 @@
 block discarded – undo
4 4
 /**
5 5
  * Add scripts to the plugin. CSS and JS.
6 6
  */
7
-if ( ! defined( 'ABSPATH' ) ) exit;
7
+if ( ! defined( 'ABSPATH' ) ) {
8
+	exit;
9
+}
8 10
 
9 11
 
10 12
 	final class Script {
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/crawl.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\Cgss\Lib\Analysis;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+	exit;
6
+}
5 7
 
6 8
 use \NirjharLo\Cgss\Lib\Analysis\Lib\Tags;
7 9
 use \NirjharLo\Cgss\Lib\Analysis\Lib\Text;
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/lib/score.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace NirjharLo\Cgss\Lib\Analysis\Lib;
4 4
 
5
-if ( ! defined( 'ABSPATH' ) ) exit;
5
+if ( ! defined( 'ABSPATH' ) ) {
6
+	exit;
7
+}
6 8
 
7 9
 /**
8 10
  * From result data found in scan, analyze a score of on-page optimization. Using approximate values
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/lib/design.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\Cgss\Lib\Analysis\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+	exit;
6
+}
5 7
 
6 8
 
7 9
 /**
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/lib/keywords.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace NirjharLo\Cgss\Lib\Analysis\Lib;
4 4
 
5
-if ( ! defined( 'ABSPATH' ) ) exit;
5
+if ( ! defined( 'ABSPATH' ) ) {
6
+	exit;
7
+}
6 8
 
7 9
 /**
8 10
  * An object to extract most used pharases in an array of phrases, containing one or more words.
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/lib/tags.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\Cgss\Lib\Analysis\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+	exit;
6
+}
5 7
 
6 8
 /**
7 9
  *
Please login to merge, or discard this patch.
Plugin/Lib/Analysis/lib/text.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace NirjharLo\Cgss\Lib\Analysis\Lib;
3 3
 
4
-if ( ! defined( 'ABSPATH' ) ) exit;
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+	exit;
6
+}
5 7
 
6 8
 
7 9
 use \DomXPath;
Please login to merge, or discard this patch.