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

Router/UrlGenerator/Standard/PackageDescriptor.php (1 issue)

the variable you call a method on is always an object.

Bug Major

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
declare(strict_types=1);
3
4
/**
5
 * This file is part of phpDocumentor.
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @author    Mike van Riel <[email protected]>
11
 * @copyright 2010-2018 Mike van Riel / Naenius (http://www.naenius.com)
12
 * @license   http://www.opensource.org/licenses/mit-license.php MIT
13
 * @link      http://phpdoc.org
14
 */
15
16
namespace phpDocumentor\Transformer\Router\UrlGenerator\Standard;
17
18
use phpDocumentor\Descriptor;
19
use phpDocumentor\Transformer\Router\UrlGenerator\UrlGeneratorInterface;
20
21
class PackageDescriptor implements UrlGeneratorInterface
22
{
23
    /**
24
     * Generates a URL from the given node or returns false if unable.
25
     *
26
     * @param string|Descriptor\PackageDescriptor $node
27
     *
28
     * @return string|false
29
     */
30 2
    public function __invoke($node)
31
    {
32 2
        $converter = new QualifiedNameToUrlConverter();
33
34 2
        return '/packages/' . $converter->fromPackage($node->getFullyQualifiedStructuralElementName()) . '.html';
0 ignored issues
show
It seems like $node is not always an object, but can also be of type string. Maybe add an additional type check?

If a variable is not always an object, we recommend to add an additional type check to ensure your method call is safe:

function someFunction(A $objectMaybe = null)
{
    if ($objectMaybe instanceof A) {
        $objectMaybe->doSomething();
    }
}
Loading history...
35
    }
36
}
37