Completed
Push — master ( 8aecdb...4fae88 )
by frank
02:43
created
classes/autoptimizeStyles.php 1 patch
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+    exit;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 class autoptimizeStyles extends autoptimizeBase {
5 8
 
@@ -24,7 +27,9 @@  discard block
 block discarded – undo
24 27
     //Reads the page and collects style tags
25 28
     public function read($options) {
26 29
         $noptimizeCSS = apply_filters( 'autoptimize_filter_css_noptimize', false, $this->content );
27
-        if ($noptimizeCSS) return false;
30
+        if ($noptimizeCSS) {
31
+            return false;
32
+        }
28 33
 
29 34
         $whitelistCSS = apply_filters( 'autoptimize_filter_css_whitelist', '', $this->content );
30 35
         if (!empty($whitelistCSS)) {
@@ -139,7 +144,7 @@  discard block
 block discarded – undo
139 144
                         if($path!==false && preg_match('#\.css$#',$path)) {
140 145
                             // Good link
141 146
                             $this->css[] = array($media,$path);
142
-                        }else{
147
+                        } else{
143 148
                             // Link is dynamic (.php etc)
144 149
                             $tag = '';
145 150
                         }
@@ -228,8 +233,9 @@  discard block
 block discarded – undo
228 233
             }
229 234
             
230 235
             foreach($media as $elem) {
231
-                if(!isset($this->csscode[$elem]))
232
-                    $this->csscode[$elem] = '';
236
+                if(!isset($this->csscode[$elem])) {
237
+                                    $this->csscode[$elem] = '';
238
+                }
233 239
                 $this->csscode[$elem] .= "\n/*FILESTART*/".$css;
234 240
             }
235 241
         }
Please login to merge, or discard this patch.