Code Duplication    Length = 8-8 lines in 2 locations

src/LTDBeget/dns/Tokenizer.php 1 location

@@ 139-146 (lines=8) @@
136
        }
137
    }
138
139
    private function ignoreComment()
140
    {
141
        start:
142
        if (!$this->stream->currentAscii()->isVerticalSpace() && !$this->stream->isEnd()) {
143
            $this->stream->next();
144
            goto start;
145
        }
146
    }
147
148
    private function extractRecord()
149
    {

src/LTDBeget/dns/record/RData.php 1 location

@@ 213-220 (lines=8) @@
210
        }
211
    }
212
213
    private function ignoreComment()
214
    {
215
        start:
216
        if (!$this->stream->currentAscii()->isVerticalSpace() && !$this->stream->isEnd()) {
217
            $this->stream->next();
218
            goto start;
219
        }
220
    }
221
    
222
    protected function endRecord()
223
    {