Passed
Push — master ( 0dfcce...5ed5da )
by Paul
02:55
created
logger.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,9 @@  discard block
 block discarded – undo
21 21
 	require_once __DIR__.'/activate.php';
22 22
 }
23 23
 require_once __DIR__.'/autoload.php';
24
-if( GL_Activate::shouldDeactivate( __FILE__ ))return;
24
+if( GL_Activate::shouldDeactivate( __FILE__ )) {
25
+	return;
26
+}
25 27
 GeminiLabs\Logger\Application::load()->init();
26 28
 
27 29
 /**
@@ -29,7 +31,8 @@  discard block
 block discarded – undo
29 31
  * @param mixed $message
30 32
  * @return GeminiLabs\Logger\Log
31 33
  */
32
-function gllog( $message = null ) {
34
+function gllog( $message = null )
35
+{
33 36
 	$logger = GeminiLabs\Logger\Application::load()->log->logger();
34 37
 	return func_num_args() > 0
35 38
 		? $logger->debug( func_get_arg(0) )
Please login to merge, or discard this patch.