Completed
Push — master ( b27204...a2c64d )
by Nate
05:15 queued 02:48
created

UpdateUserType::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 * @license    https://flipboxfactory.com/software/organization/license
6
 * @link       https://www.flipboxfactory.com/software/organization/
7
 */
8
9
namespace flipbox\organizations\actions\users;
10
11
use flipbox\craft\ember\actions\records\UpdateRecord;
12
use flipbox\organizations\records\UserType;
13
14
/**
15
 * @author Flipbox Factory <[email protected]>
16
 * @since 1.0.0
17
 */
18
class UpdateUserType extends UpdateRecord
19
{
20
    /**
21
     * @inheritdoc
22
     */
23
    public $validBodyParams = [
24
        'name',
25
        'handle'
26
    ];
27
28
    /**
29
     * @inheritdoc
30
     */
31
    public function run($type)
32
    {
33
        return parent::run($type);
34
    }
35
36
    /**
37
     * @inheritdoc
38
     * @return UserType
39
     */
40
    protected function find($identifier)
41
    {
42
        return UserType::findOne($identifier);
0 ignored issues
show
Bug Compatibility introduced by
The expression \flipbox\organizations\r...::findOne($identifier); of type yii\db\ActiveRecordInterface|array|null adds the type array to the return on line 42 which is incompatible with the return type documented by flipbox\organizations\ac...rs\UpdateUserType::find of type flipbox\organizations\records\UserType|null.
Loading history...
43
    }
44
}
45