Skip to content

Commit 5e9536c

Browse files
committed
Fix spacing
1 parent 9d3a326 commit 5e9536c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

inc/class-client.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
use WP_User;
1616

1717
class Client implements ClientInterface {
18-
const POST_TYPE = 'oauth2_client';
19-
const CLIENT_SECRET_KEY = '_oauth2_client_secret';
20-
const TYPE_KEY = '_oauth2_client_type';
21-
const REDIRECT_URI_KEY = '_oauth2_redirect_uri';
18+
const POST_TYPE = 'oauth2_client';
19+
const CLIENT_SECRET_KEY = '_oauth2_client_secret';
20+
const TYPE_KEY = '_oauth2_client_type';
21+
const REDIRECT_URI_KEY = '_oauth2_redirect_uri';
2222
const AUTH_CODE_KEY_PREFIX = '_oauth2_authcode_';
23-
const AUTH_CODE_LENGTH = 12;
24-
const CLIENT_ID_LENGTH = 12;
23+
const AUTH_CODE_LENGTH = 12;
24+
const CLIENT_ID_LENGTH = 12;
2525
const CLIENT_SECRET_LENGTH = 48;
26-
const AUTH_CODE_AGE = 600; // 10 * MINUTE_IN_SECONDS
26+
const AUTH_CODE_AGE = 600; // 10 * MINUTE_IN_SECONDS
2727

2828
/**
2929
* @var WP_Post

inc/tokens/class-access-token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class Access_Token extends Token {
1717
const META_PREFIX = '_oauth2_access_';
18-
const KEY_LENGTH = 12;
18+
const KEY_LENGTH = 12;
1919

2020
/**
2121
* @return string Meta prefix.

0 commit comments

Comments
 (0)