Passed
Push — master ( ca2377...27a60c )
by Paul
12:35 queued 03:46
created
blackbar.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
  * Domain Path: languages
17 17
  */
18 18
 
19
-defined( 'WPINC' ) || die;
19
+defined('WPINC') || die;
20 20
 
21 21
 require_once __DIR__.'/activate.php';
22
-if( \GL_BlackBar_Activate::shouldDeactivate() )return;
22
+if (\GL_BlackBar_Activate::shouldDeactivate())return;
23 23
 
24 24
 require_once __DIR__.'/autoload.php';
25 25
 (new \GeminiLabs\Blackbar\Application)->init();
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@
 block discarded – undo
19 19
 defined( 'WPINC' ) || die;
20 20
 
21 21
 require_once __DIR__.'/activate.php';
22
-if( \GL_BlackBar_Activate::shouldDeactivate() )return;
22
+if( \GL_BlackBar_Activate::shouldDeactivate() ) {
23
+	return;
24
+}
23 25
 
24 26
 require_once __DIR__.'/autoload.php';
25 27
 (new \GeminiLabs\Blackbar\Application)->init();
Please login to merge, or discard this patch.