AbstractContent::getContent()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
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