Completed
Push — master ( 04ac75...81967b )
by Nate
17:06
created

Populate::validBodyParams()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 10
ccs 0
cts 10
cp 0
rs 9.9332
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 * @license    https://flipboxfactory.com/software/patron/license
6
 * @link       https://www.flipboxfactory.com/software/patron/
7
 */
8
9
namespace flipbox\patron\actions\provider\instance\traits;
10
11
/**
12
 * @author Flipbox Factory <[email protected]>
13
 * @since 1.0.0
14
 */
15
trait Populate
16
{
17
    /**
18
     * These are the default body params that we're accepting.  You can lock down specific Client attributes this way.
19
     *
20
     * @return array
21
     */
22
    protected function validBodyParams(): array
23
    {
24
        return [
25
            'provider',
26
            'clientId',
27
            'clientSecret',
28
            'settings',
29
            'environments'
30
        ];
31
    }
32
}
33