Skip to content

Commit 9de40f0

Browse files
committed
Update since statements
1 parent 4175774 commit 9de40f0

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

includes/class-mailchimp-admin.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
/**
1414
* Class Mailchimp_Admin
1515
*
16-
* @since x.x.x
16+
* @since 1.6.0
1717
*/
1818
class Mailchimp_Admin {
1919

2020
/**
2121
* The OAuth base endpoint
2222
*
23-
* @since x.x.x
23+
* @since 1.6.0
2424
* @var string
2525
*/
2626
private $oauth_url = 'https://woocommerce.mailchimpapp.com';
@@ -193,7 +193,7 @@ public function verify_and_save_oauth_token( $access_token, $data_center ) {
193193
/**
194194
* Display admin notices.
195195
*
196-
* @since x.x.x
196+
* @since 1.6.0
197197
*/
198198
public function admin_notices() {
199199
if ( ! current_user_can( 'manage_options' ) ) {

includes/class-mailchimp-data-encryption.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@
1313
/**
1414
* Class Mailchimp_Data_Encryption
1515
*
16-
* @since x.x.x
16+
* @since 1.6.0
1717
*/
1818
class Mailchimp_Data_Encryption {
1919

2020
/**
2121
* Key to use for encryption.
2222
*
23-
* @since x.x.x
23+
* @since 1.6.0
2424
* @var string
2525
*/
2626
private $key;
2727

2828
/**
2929
* Salt to use for encryption.
3030
*
31-
* @since x.x.x
31+
* @since 1.6.0
3232
* @var string
3333
*/
3434
private $salt;
3535

3636
/**
3737
* Constructor.
3838
*
39-
* @since x.x.x
39+
* @since 1.6.0
4040
*/
4141
public function __construct() {
4242
$this->key = $this->get_default_key();
@@ -48,7 +48,7 @@ public function __construct() {
4848
*
4949
* If a user-based key is set, that is used. Otherwise the default key is used.
5050
*
51-
* @since x.x.x
51+
* @since 1.6.0
5252
*
5353
* @param string $value Value to encrypt.
5454
* @return string|bool Encrypted value, or false on failure.
@@ -75,7 +75,7 @@ public function encrypt( $value ) {
7575
*
7676
* If a user-based key is set, that is used. Otherwise the default key is used.
7777
*
78-
* @since x.x.x
78+
* @since 1.6.0
7979
*
8080
* @param string $raw_value Value to decrypt.
8181
* @return string|bool Decrypted value, or false on failure.
@@ -108,7 +108,7 @@ public function decrypt( $raw_value ) {
108108
/**
109109
* Gets the default encryption key to use.
110110
*
111-
* @since x.x.x
111+
* @since 1.6.0
112112
*
113113
* @return string Default (not user-based) encryption key.
114114
*/
@@ -128,7 +128,7 @@ private function get_default_key() {
128128
/**
129129
* Gets the default encryption salt to use.
130130
*
131-
* @since x.x.x
131+
* @since 1.6.0
132132
*
133133
* @return string Encryption salt.
134134
*/

mailchimp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ function mailchimp_sf_create_nonce( $action = -1 ) {
13761376
/**
13771377
* Get Mailchimp Access Token.
13781378
*
1379-
* @since x.x.x
1379+
* @since 1.6.0
13801380
* @return string|bool
13811381
*/
13821382
function mailchimp_sf_get_access_token() {
@@ -1399,7 +1399,7 @@ function mailchimp_sf_get_access_token() {
13991399
/**
14001400
* Should display Mailchimp Signup form.
14011401
*
1402-
* @since x.x.x
1402+
* @since 1.6.0
14031403
* @return bool
14041404
*/
14051405
function mailchimp_sf_should_display_form() {

0 commit comments

Comments
 (0)