Passed
Push — master ( 35cfff...c2191f )
by Nirjhar
14:51
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
@@ -34,4 +36,7 @@  discard block
 block discarded – undo
34 36
 
35 37
 //The Plugin
36 38
 require_once('autoload.php');
37
-if ( class_exists( 'PLUGIN_BUILD' ) ) new PLUGIN_BUILD(); ?>
39
+if ( class_exists( 'PLUGIN_BUILD' ) ) {
40
+	new PLUGIN_BUILD();
41
+}
42
+?>
Please login to merge, or discard this patch.