ResourceDeletedResponse   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 22
c 0
b 0
f 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getBody() 0 4 1
1
<?php
2
3
namespace NilPortugues\Api\Xml\Http\Message;
4
5
class ResourceDeletedResponse extends AbstractResponse
6
{
7
    /**
8
     * @var int
9
     */
10
    protected $httpCode = 204;
11
12
    /**
13
     *
14
     */
15
    public function __construct()
16
    {
17
        $this->response = self::instance('', $this->httpCode, $this->headers);
18
    }
19
20
    /**
21
     */
22
    public function getBody()
23
    {
24
        return;
25
    }
26
}
27