Code Duplication    Length = 15-16 lines in 2 locations

modules/ticket_selector/TicketSelectorRow.php 2 locations

@@ 347-361 (lines=15) @@
344
     *
345
     * @return string|bool
346
     */
347
    protected function getFilteredRowHtml()
348
    {
349
        return apply_filters(
350
            'FHEE__ticket_selector_chart_template__do_ticket_entire_row',
351
            false,
352
            $this->ticket,
353
            $this->max,
354
            $this->min,
355
            $this->required_ticket_sold_out,
356
            $this->ticket_price,
357
            $this->ticket_bundle,
358
            $this->ticket_status_html,
359
            $this->status_class,
360
            $this
361
        );
362
    }
363
364
@@ 374-389 (lines=16) @@
371
     *
372
     * @return string|bool
373
     */
374
    protected function getFilteredRowContents()
375
    {
376
        return apply_filters(
377
            'FHEE__ticket_selector_chart_template__do_ticket_inside_row',
378
            false,
379
            $this->ticket,
380
            $this->max,
381
            $this->min,
382
            $this->required_ticket_sold_out,
383
            $this->ticket_price,
384
            $this->ticket_bundle,
385
            $this->ticket_status_html,
386
            $this->status_class,
387
            $this
388
        );
389
    }
390
}
391