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

@@ 218-225 (lines=8) @@
215
        }
216
    }
217
218
    private function ignoreComment()
219
    {
220
        start:
221
        if (!$this->stream->currentAscii()->isVerticalSpace() && !$this->stream->isEnd()) {
222
            $this->stream->next();
223
            goto start;
224
        }
225
    }
226
227
    protected function endRecord()
228
    {