AbstractContent   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 18
wmc 1
lcom 0
cbo 0
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getContent() 0 4 1
1
<?php
2
namespace ApigilityClient\Http\Response\Content;
3
4
use ApigilityClient\Http\Response\Content\ContentInterface;
5
6
abstract class AbstractContent implements ContentInterface
7
{
8
9
    /**
10
     * @var mixed Response content
11
     */
12
    protected $content;
13
14
    /**
15
     * Get the response content
16
     *
17
     * @return mixed:
0 ignored issues
show
Documentation introduced by
The doc-type mixed: could not be parsed: Unknown type name "mixed:" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
18
     */
19
    public function getContent()
20
    {
21
        return $this->content;
22
    }
23
}
24