Passed
Push — master ( 1551ad...2434f2 )
by Nirjhar
02:16
created
wp-plugin-framework.php 1 patch
Braces   +7 added lines, -3 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
@@ -31,8 +33,10 @@  discard block
 block discarded – undo
31 33
 //The Plugin
32 34
 require_once( 'autoload.php' );
33 35
 function plugin() {
34
-	if ( class_exists( 'PLUGIN_BUILD' ) ) return PLUGIN_BUILD::instance();
35
-}
36
+	if ( class_exists( 'PLUGIN_BUILD' ) ) {
37
+		return PLUGIN_BUILD::instance();
38
+	}
39
+	}
36 40
 
37 41
 global $plugin;
38 42
 $plugin = plugin(); ?>
Please login to merge, or discard this patch.