Code Duplication    Length = 28-28 lines in 2 locations

src/Amadeus/Client/Struct/Ticket/RepricePnrWithBookingClass.php 1 location

@@ 464-491 (lines=28) @@
461
     * @param string|null $potOverride
462
     * @return PricingOption[]
463
     */
464
    protected function loadPointOverrides($posOverride, $potOverride)
465
    {
466
        $opt = [];
467
468
        if (!empty($posOverride)) {
469
            $po = new PricingOption(PricingOptionKey::OPTION_POINT_OF_SALE_OVERRIDE);
470
471
            $po->locationInformation = new LocationInformation(
472
                LocationInformation::TYPE_POINT_OF_SALE,
473
                $posOverride
474
            );
475
476
            $opt[] = $po;
477
        }
478
479
        if (!empty($potOverride)) {
480
            $po2 = new PricingOption(PricingOptionKey::OPTION_POINT_OF_TICKETING_OVERRIDE);
481
482
            $po2->locationInformation = new LocationInformation(
483
                LocationInformation::TYPE_POINT_OF_TICKETING,
484
                $potOverride
485
            );
486
487
            $opt[] = $po2;
488
        }
489
490
        return $opt;
491
    }
492
493
494
    /**

src/Amadeus/Client/Struct/Fare/PricePNRWithBookingClass13.php 1 location

@@ 468-495 (lines=28) @@
465
     * @param string|null $potOverride
466
     * @return PricingOptionGroup[]
467
     */
468
    protected static function loadPointOverrides($posOverride, $potOverride)
469
    {
470
        $opt = [];
471
472
        if (!empty($posOverride)) {
473
            $po = new PricingOptionGroup(PricingOptionKey::OPTION_POINT_OF_SALE_OVERRIDE);
474
475
            $po->locationInformation = new LocationInformation(
476
                LocationInformation::TYPE_POINT_OF_SALE,
477
                $posOverride
478
            );
479
480
            $opt[] = $po;
481
        }
482
483
        if (!empty($potOverride)) {
484
            $po2 = new PricingOptionGroup(PricingOptionKey::OPTION_POINT_OF_TICKETING_OVERRIDE);
485
486
            $po2->locationInformation = new LocationInformation(
487
                LocationInformation::TYPE_POINT_OF_TICKETING,
488
                $potOverride
489
            );
490
491
            $opt[] = $po2;
492
        }
493
494
        return $opt;
495
    }
496
497
    /**
498
     * @param string|null $pricingLogic