Completed
Push — master ( c7c88d...7873ee )
by Mike
02:24
created

RefreshToken::configureData()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 8
rs 9.4285
cc 3
eloc 6
nc 3
nop 1
1
<?php
2
3
namespace SugarAPI\SDK\EntryPoint\POST;
4
5
class RefreshToken extends Oauth2Token {
6
7
    /**
8
     * @inheritdoc
9
     */
10
    protected $_REQUIRED_DATA = array(
11
        'grant_type' => 'refresh_token',
12
        'refresh_token' => null,
13
        'client_id' => null,
14
        'client_secret' => null
15
    );
16
17
}