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

singlefile/syntax/AnonymousClassInObjectMethod.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
/**
14
 * Test class
15
 */
16
class TTT
17
{
18
    /**
19
     * Test method
20
     * @return string
21
     */
22
    public function a()
23
    {
24
        $a = null ?? new class() {
0 ignored issues
show
$a is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
25
            public function export()
26
            {
27
                return null;
28
            }
29
        };
30
        return 'test';
31
    }
32
}
33