Completed
Push — develop ( 48a3ec...fa4cb4 )
by Mike
05:54
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
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...
17
{
18
    /**
19
     * Test method
20
     * @return string
21
     */
22
    public function a()
23
    {
24
        $a = null ?? new class() {
25
            public function export()
26
            {
27
                return null;
28
            }
29
        };
30
        return 'test';
31
    }
32
}
33