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

Builder/Reflector/Tags/ThrowsAssembler.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\ThrowsDescriptor;
20
use phpDocumentor\Reflection\DocBlock\Tags\Throws;
21
22
/**
23
 * Constructs a new descriptor from the Reflector for an `@throws` tag.
24
 *
25
 * This object will read the reflected information for the `@throws` tag and create a {@see ThrowsDescriptor} object
26
 * that can be used in the rest of the application and templates.
27
 */
28
class ThrowsAssembler extends AssemblerAbstract
29
{
30
    /**
31
     * Creates a new Descriptor from the given Reflector.
32
     *
33
     * @param Throws $data
34
     *
35
     * @return ThrowsDescriptor
36
     */
37 1
    public function create($data)
38
    {
39 1
        $descriptor = new ThrowsDescriptor($data->getName());
40 1
        $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...
41 1
        $descriptor->setType(AssemblerAbstract::deduplicateTypes($data->getType()));
42
43 1
        return $descriptor;
44
    }
45
}
46