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

Builder/Reflector/Tags/ExampleAssembler.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 InvalidArgumentException;
19
use phpDocumentor\Descriptor\Builder\Reflector\AssemblerAbstract;
20
use phpDocumentor\Descriptor\Example\Finder;
21
use phpDocumentor\Descriptor\Tag\ExampleDescriptor;
22
use phpDocumentor\Reflection\DocBlock\ExampleFinder;
23
use phpDocumentor\Reflection\DocBlock\Tags\Example;
24
use Webmozart\Assert\Assert;
25
26
/**
27
 * This class collects data from the example tag definition of the Reflection library, tries to find the correlating
28
 * example file on disk and creates a complete Descriptor from that.
29
 */
30
class ExampleAssembler extends AssemblerAbstract
31
{
32
    /** @var ExampleFinder */
33
    private $finder;
34
35
    /**
36
     * Initializes this assembler with the means to find the example file on disk.
37
     */
38 1
    public function __construct(ExampleFinder $finder)
39
    {
40 1
        $this->finder = $finder;
41 1
    }
42
43
    /**
44
     * Creates a new Descriptor from the given Reflector.
45
     *
46
     * @param Example $data
47
     *
48
     * @throws InvalidArgumentException if the provided parameter is not of type ExampleTag; the interface won't let
49
     *   up typehint the signature.
50
     *
51
     * @return ExampleDescriptor
52
     */
53 2
    public function create($data)
54
    {
55 2
        Assert::isInstanceOf($data, Example::class);
56 1
        $descriptor = new ExampleDescriptor($data->getName());
57 1
        $descriptor->setFilePath((string) $data->getFilePath());
58 1
        $descriptor->setStartingLine($data->getStartingLine());
59 1
        $descriptor->setLineCount($data->getLineCount());
60 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...
61 1
        $descriptor->setExample($this->finder->find($data));
62
63 1
        return $descriptor;
64
    }
65
}
66