Passed
Push — master ( a7686a...8df1c1 )
by Siim
15:12
created

DefaultResponse   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 init() 0 4 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 init()
14
    {
15
        $this->setData([
16
            'message' => 'Default'
17
        ]);
18
    }
19
}
20