DeleteOrganization::find()   A
last analyzed

Complexity

Conditions 2
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 0
cts 7
cp 0
rs 10
c 0
b 0
f 0
cc 2
nc 1
nop 1
crap 6
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\organizations;
10
11
use flipbox\craft\ember\actions\elements\DeleteElement;
12
use flipbox\organizations\elements\Organization;
13
use flipbox\organizations\elements\Organization as OrganizationElement;
14
15
/**
16
 * @author Flipbox Factory <[email protected]>
17
 * @since 1.0.0
18
 */
19
class DeleteOrganization extends DeleteElement
20
{
21
    /**
22
     * @inheritdoc
23
     */
24
    public function run($organization)
25
    {
26
        return parent::run($organization);
27
    }
28
29
    /**
30
     * @inheritdoc
31
     * @return OrganizationElement
32
     */
33
    public function find($identifier)
34
    {
35
        return Organization::findOne([
0 ignored issues
show
Bug Compatibility introduced by
The expression \flipbox\organizations\e...er, 'status' => null)); of type craft\base\ElementInterface|array|null adds the type array to the return on line 35 which is incompatible with the return type documented by flipbox\organizations\ac...eleteOrganization::find of type flipbox\organizations\elements\Organization|null.
Loading history...
36
            (is_numeric($identifier) ? 'id' : 'slug') => $identifier,
37
            'status' => null
38
        ]);
39
    }
40
}
41