ReturnTag   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 31
rs 10
c 0
b 0
f 0
wmc 5
lcom 0
cbo 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A get() 0 3 1
A getReturnWithDefinedReturn() 0 3 1
A getReturnWithoutAny() 0 3 1
A getReturnDescription() 0 3 1
A getMultiTypeArray() 0 3 1
1
<?php
2
/**
3
 * This file is part of phpDocumentor.
4
 *
5
 *  For the full copyright and license information, please view the LICENSE
6
 *  file that was distributed with this source code.
7
 *
8
 * @copyright 2010-2018 Mike van Riel<[email protected]>
9
 * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
 * @link      http://phpdoc.org
11
 */
12
13
final class ReturnTag
14
{
15
    public function get(): int
16
    {
17
    }
18
19
    /**
20
     * @return string description
21
     */
22
    public function getReturnWithDefinedReturn(): string
23
    {
24
    }
25
26
    public function getReturnWithoutAny()
27
    {
28
    }
29
30
    /**
31
     * @return string some value
32
     */
33
    public function getReturnDescription()
34
    {
35
    }
36
37
    /**
38
     * @return (integer|string)[]
39
     */
40
    public function getMultiTypeArray()
41
    {
42
    }
43
}
44
45
function get(): int
46
{
47
}
48
49
/**
50
 * @return string description
51
 */
52
function getReturnWithDefinedReturn(): string
53
{
54
}
55
56
function getReturnWithoutAny()
57
{
58
}
59
60
/**
61
 * @return string some value
62
 */
63
function getReturnDescription()
64
{
65
}
66