Completed
Push — master ( 217daa...4e747b )
by Siim
11:32
created

EmptyRequest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: siim
5
 * Date: 14.02.19
6
 * Time: 7:54
7
 */
8
9
namespace Sf4\Api\Request;
10
11
use Sf4\Api\Response\EmptyResponse;
12
13
class EmptyRequest extends AbstractRequest
14
{
15
    public function __construct()
16
    {
17
        $this->init(
18
            new EmptyResponse()
19
        );
20
    }
21
}
22