Completed
Push — master ( 5da8f0...b74684 )
by Andrii
12:49
created

src/commands/GetInfoHandler.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
/**
3
 * HiAPI Yii2 base project for building API
4
 *
5
 * @link      https://github.com/hiqdev/hiapi
6
 * @package   hiapi
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiapi\commands;
12
13
use hiqdev\yii\DataMapper\components\EntityManagerInterface;
14
use hiqdev\yii\DataMapper\query\Specification;
15
use hiqdev\yii\DataMapper\repositories\BaseRepository;
16
17
/**
18
 * Class GetInfoHandler
19
 *
20
 * @author Andrii Vasyliev <[email protected]>
21
 */
22
class GetInfoHandler extends SearchHandler
23
{
24
    public function handle(EntityCommandInterface $command)
25
    {
26
        return $this->getRepository($command)->findOneOrFail($this->buildSpecification($command));
0 ignored issues
show
$command of type object<hiapi\commands\EntityCommandInterface> is not a sub-type of object<hiapi\commands\EntityCommand>. It seems like you assume a concrete implementation of the interface hiapi\commands\EntityCommandInterface to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
27
    }
28
29
    protected function buildSpecification(EntityCommandInterface $command)
30
    {
31
        return $this->createSpecification()->where(['id' => $command->id])->limit(1);
32
    }
33
}
34