Code Duplication    Length = 7-7 lines in 2 locations

src/SegmentedExporter.php 2 locations

@@ 57-63 (lines=7) @@
54
        return $this;
55
    }
56
57
    public function getPlaylistFullPath(): string
58
    {
59
        return implode(DIRECTORY_SEPARATOR, [
60
            pathinfo($this->playlistPath, PATHINFO_DIRNAME),
61
            $this->getPlaylistFilename(),
62
        ]);
63
    }
64
65
    public function getSegmentFullPath(): string
66
    {
@@ 65-71 (lines=7) @@
62
        ]);
63
    }
64
65
    public function getSegmentFullPath(): string
66
    {
67
        return implode(DIRECTORY_SEPARATOR, [
68
            pathinfo($this->playlistPath, PATHINFO_DIRNAME),
69
            $this->getSegmentFilename(),
70
        ]);
71
    }
72
73
    public function getPlaylistPath(): string
74
    {