Completed
Push — master ( a0b685...dcb53f )
by Askupa
01:47
created
bootstrap.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,9 @@
 block discarded – undo
11 11
 /**
12 12
  * Prevent loading the library more than once
13 13
  */
14
-if( defined( 'WP_ADMIN_NOTIFICATION' ) ) return;
14
+if( defined( 'WP_ADMIN_NOTIFICATION' ) ) {
15
+    return;
16
+}
15 17
 define( 'WP_ADMIN_NOTIFICATION', true );
16 18
 
17 19
 /**
Please login to merge, or discard this patch.
functions.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,9 @@
 block discarded – undo
64 64
         $offset = 0;
65 65
         foreach($dismissed as $id)
66 66
         {
67
-            if( $id === $handle ) break;
67
+            if( $id === $handle ) {
68
+                break;
69
+            }
68 70
             $offset++;
69 71
         }
70 72
         array_splice( $dismissed, $offset, 1);
Please login to merge, or discard this patch.
composer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,9 @@
 block discarded – undo
11 11
 /**
12 12
  * Prevent loading the library more than once
13 13
  */
14
-if( defined( 'WP_ADMIN_NOTIFICATION' ) ) return;
14
+if( defined( 'WP_ADMIN_NOTIFICATION' ) ) {
15
+    return;
16
+}
15 17
 define( 'WP_ADMIN_NOTIFICATION', true );
16 18
 
17 19
 require_once 'functions.php';
Please login to merge, or discard this patch.