Completed
Push — develop ( 8eb671...133594 )
by Mike
19:30 queued 09:24
created

tests/features/assets/singlefile/tags/return.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
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