Passed
Push — master ( 68b87a...419ff0 )
by Siim
10:55
created

DefaultResponse   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: siim
5
 * Date: 18.01.19
6
 * Time: 9:11
7
 */
8
9
namespace Sf4\Api\Response;
10
11
class DefaultResponse extends AbstractResponse
12
{
13
    public function __construct()
14
    {
15
        parent::__construct();
16
        $this->setData([
17
            'message' => 'Test'
18
        ]);
19
    }
20
}
21