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

Builder/Reflector/Tags/LinkAssembler.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
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\Descriptor\Builder\Reflector\Tags;
17
18
use phpDocumentor\Descriptor\Builder\Reflector\AssemblerAbstract;
19
use phpDocumentor\Descriptor\Tag\LinkDescriptor;
20
use phpDocumentor\Reflection\DocBlock\Tags\Link;
21
22
/**
23
 * Constructs a new descriptor from the Reflector for an `@link` tag.
24
 *
25
 * This object will read the reflected information for the `@link` tag and create a {@see LinkDescriptor} object that
26
 * can be used in the rest of the application and templates.
27
 */
28
class LinkAssembler extends AssemblerAbstract
29
{
30
    /**
31
     * Creates a new Descriptor from the given Reflector.
32
     *
33
     * @param Link $data
34
     *
35
     * @return LinkDescriptor
36
     */
37
    public function create($data)
38
    {
39
        $descriptor = new LinkDescriptor($data->getName());
40
        $descriptor->setLink($data->getLink());
41
        $descriptor->setDescription($data->getDescription());
0 ignored issues
show
It seems like $data->getDescription() targeting phpDocumentor\Reflection...seTag::getDescription() can also be of type null or object<phpDocumentor\Ref...n\DocBlock\Description>; however, phpDocumentor\Descriptor...iptor::setDescription() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
42
43
        return $descriptor;
44
    }
45
}
46