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

src/Events/ApiRequesting.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 ApiRequesting 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
     * @param string $driver
25
     * @param string $gateway
26
     * @param string $endpoint
27
     * @param array  $payload
28
     */
29
    public function __construct(string $driver, string $gateway, string $endpoint, array $payload)
30
    {
31
        $this->endpoint = $endpoint;
32
        $this->payload = $payload;
33
34
        parent::__construct($driver, $gateway);
35
    }
36
}
37