Passed
Push — master ( 625f27...193caa )
by
unknown
07:18 queued 03:13
created
inc/baseStyle.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     $rules = get_option('rewrite_rules');
22 22
 
23
-    if (! isset($rules["{$routeName}/(.*?)/?$"])) {
23
+    if (!isset($rules["{$routeName}/(.*?)/?$"])) {
24 24
         flush_rewrite_rules();
25 25
     }
26 26
 }
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
 function disallowRobots()
29 29
 {
30 30
     if (defined('WPSEO_VERSION')) {
31
-        add_filter('wpseo_robots', function () {
31
+        add_filter('wpseo_robots', function() {
32 32
             return "noindex,nofollow";
33 33
         });
34 34
     } else {
35 35
         remove_action('wp_head', 'noindex', 1);
36
-        add_action('wp_head', function () {
36
+        add_action('wp_head', function() {
37 37
             echo "<meta name='robots' content='noindex,nofollow' />\n";
38 38
         });
39 39
     }
Please login to merge, or discard this patch.