GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 1978d2...e2f699 )
by William
03:55
created

src/Hateoas/Serializer/Metadata/InlineDeferrer.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
namespace Hateoas\Serializer\Metadata;
4
5
use Hateoas\Serializer\JMSSerializerMetadataAwareInterface;
6
use JMS\Serializer\SerializationContext;
7
use Metadata\MetadataFactory;
8
use Metadata\MetadataFactoryInterface;
9
10
/**
11
 * @author Adrien Brault <[email protected]>
12
 */
13
class InlineDeferrer implements JMSSerializerMetadataAwareInterface
14
{
15
    /**
16
     * @var MetadataFactory
17
     */
18
    protected $serializerMetadataFactory;
19
20
    /**
21
     * @var \SplObjectStorage
22
     */
23
    protected $deferredData;
24
25
    public function __construct(MetadataFactory $serializerMetadataFactory = null)
26
    {
27
        $this->serializerMetadataFactory = $serializerMetadataFactory;
28
        $this->deferredData = new \SplObjectStorage();
29
    }
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function setMetadataFactory(MetadataFactoryInterface $metadataFactory)
35
    {
36
        $this->serializerMetadataFactory = $metadataFactory;
0 ignored issues
show
Documentation Bug introduced by
$metadataFactory is of type object<Metadata\MetadataFactoryInterface>, but the property $serializerMetadataFactory was declared to be of type object<Metadata\MetadataFactory>. Are you sure that you always receive this specific sub-class here, or does it make sense to add an instanceof check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.

Either this assignment is in error or an instanceof check should be added for that assignment.

class Alien {}

class Dalek extends Alien {}

class Plot
{
    /** @var  Dalek */
    public $villain;
}

$alien = new Alien();
$plot = new Plot();
if ($alien instanceof Dalek) {
    $plot->villain = $alien;
}
Loading history...
37
    }
38
39
    public function handleItems($object, array $items, SerializationContext $context)
40
    {
41
        if ($this->deferredData->contains($object)) {
42
            $items = array_merge($this->deferredData->offsetGet($object), $items);
43
            $this->deferredData->detach($object);
44
        }
45
46
        $parentObjectInlining = $this->getParentObjectInlining($object, $context);
47
        if (null === $parentObjectInlining) {
48
            return $items;
49
        }
50
51
        if ($this->deferredData->contains($parentObjectInlining)) {
52
            $items = array_merge($items, $this->deferredData->offsetGet($parentObjectInlining));
53
        }
54
55
        // We need to defer the links serialization to the $parentObject
56
        $this->deferredData->attach($parentObjectInlining, $items);
57
58
        return array();
59
    }
60
61
    private function getParentObjectInlining($object, SerializationContext $context)
62
    {
63
        $metadataStack = $context->getMetadataStack();
64
        $visitingStack = $context->getVisitingStack();
65
66
        $parentObject = null;
67
        if (count($visitingStack) > 0) {
68
            $parentObject = $visitingStack[0];
69
        }
70
        if ($parentObject === $object && count($visitingStack) > 1) {
71
            $parentObject = $visitingStack[1]; // $object is inlined inside $parentObject
72
        }
73
74
        if (
75
            $metadataStack->count() > 0 && isset($metadataStack[0]->inline) && $metadataStack[0]->inline
76
            && $this->serializerMetadataFactory->getMetadataForClass(get_class($parentObject)) === $metadataStack[1]
77
        ) {
78
            return $parentObject;
79
        }
80
81
        return null;
82
    }
83
}
84