Add space between foreach and ‘(‘
[MAILPOET-1791]
This commit is contained in:
@ -23,7 +23,7 @@ class DeferredAdminNotices {
|
||||
public function printAndClean() {
|
||||
$notices = get_option(DeferredAdminNotices::OPTIONS_KEY_NAME, array());
|
||||
|
||||
foreach($notices as $notice) {
|
||||
foreach ($notices as $notice) {
|
||||
$notice = new Notice(Notice::TYPE_WARNING, $notice["message"]);
|
||||
add_action('network_admin_notices', array($notice, 'displayWPNotice'));
|
||||
}
|
||||
@ -33,4 +33,4 @@ class DeferredAdminNotices {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user