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

Postback   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 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
}