Completed
Pull Request — master (#14)
by
unknown
01:24
created

Postback::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
4
namespace Covery\Client\Requests;
5
6
use Covery\Client\EnvelopeInterface;
7
8
/**
9
 * Class Postback
10
 *
11
 * Contains postback data, that must be stored on Covery without
12
 * decision making
13
 *
14
 * @package Covery\Client\Requests
15
 */
16
class Postback extends AbstractEnvelopeRequest
17
{
18
    public function __construct(EnvelopeInterface $envelope)
19
    {
20
        parent::__construct('api/postback', $envelope);
21
    }
22
}