Completed
Push — master ( 5d7079...1d5d1c )
by Siim
11:21 queued 36s
created

SiteRequest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 9
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: 19.02.19
6
 * Time: 7:11
7
 */
8
9
namespace Sf4\Api\Request;
10
11
use Sf4\Api\Response\SiteResponse;
12
13
class SiteRequest extends AbstractRequest
14
{
15
16
    const ROUTE = 'api_site';
17
18
    public function __construct()
19
    {
20
        $this->init(
21
            new SiteResponse()
22
        );
23
    }
24
}
25