Code Duplication    Length = 10-10 lines in 2 locations

src/Response/Shared/Cat/AbstractAliasesCatResponse.php 1 location

@@ 39-48 (lines=10) @@
36
    /**
37
     * @inheritdoc
38
     */
39
    protected function processData()
40
    {
41
        if (null === $this->data) {
42
            $rawData = $this->getRawData();
43
44
            if (null !== $rawData) {
45
                $this->data = $this->processCatData($rawData);
46
            }
47
        }
48
    }
49
50
    /**
51
     * This is our serializer ;)

src/Response/Shared/Cat/AbstractAllocationCatResponse.php 1 location

@@ 42-51 (lines=10) @@
39
    /**
40
     * @inheritdoc
41
     */
42
    protected function processData()
43
    {
44
        if (null === $this->data) {
45
            $rawData = $this->getRawData();
46
47
            if (null !== $rawData) {
48
                $this->data = $this->processCatData($rawData);
49
            }
50
        }
51
    }
52
53
    /**
54
     * This is our serializer ;)