Code Duplication    Length = 8-8 lines in 2 locations

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

@@ 197-204 (lines=8) @@
194
        }
195
    }
196
197
    private function ignoreComment()
198
    {
199
        start:
200
        if (!$this->stream->currentAscii()->isVerticalSpace() && !$this->stream->isEnd()) {
201
            $this->stream->next();
202
            goto start;
203
        }
204
    }
205
    
206
    protected function endRecord()
207
    {

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
    {