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

DeleteUserType::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\DeleteRecord;
12
use flipbox\organizations\records\UserType;
13
14
/**
15
 * @author Flipbox Factory <[email protected]>
16
 * @since 1.0.0
17
 */
18
class DeleteUserType extends DeleteRecord
19
{
20
    /**
21
     * @inheritdoc
22
     */
23
    public function run($type)
24
    {
25
        return parent::run($type);
26
    }
27
28
    /**
29
     * @inheritdoc
30
     * @return UserType
31
     */
32
    protected function find($identifier)
33
    {
34
        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 34 which is incompatible with the return type documented by flipbox\organizations\ac...rs\DeleteUserType::find of type flipbox\organizations\records\UserType|null.
Loading history...
35
    }
36
}
37