Completed
Push — develop ( fcce06...87d9a9 )
by Nate
02:07
created

src/actions/organizations/DeleteOrganization.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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\Element|null|craft\base\Element[] adds the type craft\base\Element[] 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