MpShortcut::getPlugins()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 10
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 12
rs 9.9332
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yansongda\Pay\Shortcut\Wechat;
6
7
use Yansongda\Artful\Contract\ShortcutInterface;
8
use Yansongda\Artful\Plugin\AddPayloadBodyPlugin;
9
use Yansongda\Artful\Plugin\ParserPlugin;
10
use Yansongda\Artful\Plugin\StartPlugin;
11
use Yansongda\Pay\Plugin\Wechat\AddRadarPlugin;
12
use Yansongda\Pay\Plugin\Wechat\ResponsePlugin;
13
use Yansongda\Pay\Plugin\Wechat\V3\AddPayloadSignaturePlugin;
14
use Yansongda\Pay\Plugin\Wechat\V3\Pay\Jsapi\InvokePlugin;
15
use Yansongda\Pay\Plugin\Wechat\V3\Pay\Jsapi\PayPlugin;
16
use Yansongda\Pay\Plugin\Wechat\V3\VerifySignaturePlugin;
17
18
class MpShortcut implements ShortcutInterface
19
{
20
    public function getPlugins(array $params): array
21
    {
22
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(Yansongda\A...in\ParserPlugin::class) returns the type array<integer,string> which is incompatible with the return type mandated by Yansongda\Artful\Contrac...Interface::getPlugins() of Yansongda\Artful\Contract\PluginInterface[].

In the issue above, the returned value is violating the contract defined by the mentioned interface.

Let's take a look at an example:

interface HasName {
    /** @return string */
    public function getName();
}

class Name {
    public $name;
}

class User implements HasName {
    /** @return string|Name */
    public function getName() {
        return new Name('foo'); // This is a violation of the ``HasName`` interface
                                // which only allows a string value to be returned.
    }
}
Loading history...
23
            StartPlugin::class,
24
            PayPlugin::class,
25
            AddPayloadBodyPlugin::class,
26
            AddPayloadSignaturePlugin::class,
27
            AddRadarPlugin::class,
28
            InvokePlugin::class,
29
            VerifySignaturePlugin::class,
30
            ResponsePlugin::class,
31
            ParserPlugin::class,
32
        ];
33
    }
34
}
35