Skip to content

Commit

Permalink
Coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekPress committed Oct 13, 2016
1 parent 60c0af4 commit 78d858b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions inc/functions/cloudflare.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function get_rocket_cloudflare_instance() {
* @return Array
*/
function get_rocket_cloudflare_settings() {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand Down Expand Up @@ -84,7 +84,7 @@ function get_rocket_cloudflare_settings() {
* @return void
*/
function set_rocket_cloudflare_devmode( $mode ) {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand All @@ -109,7 +109,7 @@ function set_rocket_cloudflare_devmode( $mode ) {
* @return void
*/
function set_rocket_cloudflare_cache_level( $mode ) {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand All @@ -128,7 +128,7 @@ function set_rocket_cloudflare_cache_level( $mode ) {
* @return void
*/
function set_rocket_cloudflare_minify( $mode ) {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand All @@ -153,7 +153,7 @@ function set_rocket_cloudflare_minify( $mode ) {
* @return void
*/
function set_rocket_cloudflare_rocket_loader( $mode ) {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand All @@ -171,7 +171,7 @@ function set_rocket_cloudflare_rocket_loader( $mode ) {
* @return void
*/
function set_rocket_cloudflare_browser_cache_ttl( $mode ) {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand All @@ -190,7 +190,7 @@ function set_rocket_cloudflare_browser_cache_ttl( $mode ) {
* @return void
*/
function rocket_purge_cloudflare() {
if( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
if ( ! is_object( $GLOBALS['rocket_cloudflare'] ) ) {
return false;
}

Expand Down

0 comments on commit 78d858b

Please sign in to comment.