Code Duplication    Length = 3-3 lines in 2 locations

src/Adapter/VersionProbe/ZipVersionProbe.php 1 location

@@ 64-66 (lines=3) @@
61
            return $this->isSupported;
62
        }
63
64
        if (null === $this->inflator || null === $this->deflator) {
65
            return $this->isSupported = VersionProbeInterface::PROBE_NOTSUPPORTED;
66
        }
67
68
        $processDeflate = $this
69
            ->deflator

src/Adapter/VersionProbe/AbstractTarVersionProbe.php 1 location

@@ 39-41 (lines=3) @@
36
            return $this->isSupported;
37
        }
38
39
        if (null === $this->inflator || null === $this->deflator) {
40
            return $this->isSupported = VersionProbeInterface::PROBE_NOTSUPPORTED;
41
        }
42
43
        $good = true;
44