diff --git a/src/BusProNet/DataProcessor/PickupPlanningTransformer.php b/src/BusProNet/DataProcessor/PickupPlanningTransformer.php index 34b4081..131e424 100644 --- a/src/BusProNet/DataProcessor/PickupPlanningTransformer.php +++ b/src/BusProNet/DataProcessor/PickupPlanningTransformer.php @@ -4,6 +4,13 @@ declare(strict_types=1); namespace App\BusProNet\DataProcessor; +/** + * Transforms raw pickup planning data into structured travel-indexed pickup information. + * + * Processes JSON payload from the CMS pickup planning endpoint, filtering for outbound + * trips (HIN direction) and grouping pickups by travel code. Each pickup includes city, + * location, and datetime, sorted chronologically per travel code. + */ class PickupPlanningTransformer { /** diff --git a/src/EventListener/AccessDeniedListener.php b/src/EventListener/AccessDeniedListener.php index c7284b1..26c18e8 100644 --- a/src/EventListener/AccessDeniedListener.php +++ b/src/EventListener/AccessDeniedListener.php @@ -1,5 +1,7 @@