Completed
Push — master ( 1ec9e3...ab571a )
by Songda
03:58
created

src/Events/MethodCalled.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
namespace Yansongda\Pay\Events;
4
5 View Code Duplication
class MethodCalled extends Event
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
6
{
7
    /**
8
     * endpoint.
9
     *
10
     * @var string
11
     */
12
    public $endpoint;
13
14
    /**
15
     * payload.
16
     *
17
     * @var array
18
     */
19
    public $payload;
20
21
    /**
22
     * Bootstrap.
23
     *
24
     * @author yansongda <[email protected]>
25
     *
26
     * @param string $driver
27
     * @param string $gateway
28
     * @param string $endpoint
29
     * @param array  $payload
30
     */
31
    public function __construct(string $driver, string $gateway, string $endpoint, array $payload = [])
32
    {
33
        $this->endpoint = $endpoint;
34
        $this->payload = $payload;
35
36
        parent::__construct($driver, $gateway);
37
    }
38
}
39