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

assets/singlefile/internals/conflate-types.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
namespace My\FZZNamespace;
3
4
class A
5
{
6
    /**
7
     * @return self|\My\FZZNamespace\A|A
8
     */
9
    function test($test)
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
10
    {
11
    }
12
}
13