Passed
Push — master ( c2191f...1297c1 )
by Nirjhar
08:04
created
wp-plugin-framework.php 1 patch
Braces   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,9 @@  discard block
 block discarded – undo
11 11
  License: GPLv2
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
@@ -30,4 +32,7 @@  discard block
 block discarded – undo
30 32
 
31 33
 //The Plugin
32 34
 require_once('autoload.php');
33
-if ( class_exists( 'PLUGIN_BUILD' ) ) new PLUGIN_BUILD(); ?>
35
+if ( class_exists( 'PLUGIN_BUILD' ) ) {
36
+	new PLUGIN_BUILD();
37
+}
38
+?>
Please login to merge, or discard this patch.