Passed
Push — master ( 87e5da...6c9f00 )
by Hector Luis
04:51
created

Response::setContent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Decorator Implementation
6
 * @category    Ticaje
7
 * @author      Max Demian <[email protected]>
8
 */
9
10
namespace Ticaje\Contract\Patterns\Implementation\Decorator\Responder;
11
12
use Ticaje\Contract\Traits\BaseDto;
13
use Ticaje\Contract\Patterns\Interfaces\Decorator\Responder\ResponseInterface;
14
15
/**
16
 * Class Response
17
 * @package Ticaje\Contract\Patterns\Implementation\Decorator\Responder
18
 */
19
class Response implements ResponseInterface
20
{
21
    use BaseDto;
22
23
    protected $success;
24
25
    protected $content;
26
27
    protected $message;
28
}
29