From 896b70b100a817b8ec4622345af6360e984d8b7e Mon Sep 17 00:00:00 2001 From: Jay Wood Date: Fri, 28 Aug 2015 19:18:27 -0400 Subject: [PATCH] Passify PHPcs complaints --- inc/api.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/api.php b/inc/api.php index afbe4ec..d5d3267 100644 --- a/inc/api.php +++ b/inc/api.php @@ -7,7 +7,7 @@ /** * Display custom CSS */ -function cwv3_the_css(){ +function cwv3_the_css() { echo cwv3_get_css(); } @@ -16,7 +16,7 @@ function cwv3_the_css(){ * Uses filters so you can do what you want here programtically. * @return string HTML/CSS */ -function cwv3_get_css(){ +function cwv3_get_css() { $image = get_option( 'cwv3_bg_image', '' ); $color = get_option( 'cwv3_bg_color', '' ); $custom_css = get_option( 'cwv3_css', '' ); @@ -31,7 +31,7 @@ function cwv3_get_css(){