wip: booking process
This commit is contained in:
@@ -1,11 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\BusProNet\Model;
|
||||
|
||||
use Symfony\Component\Serializer\Attribute\Context;
|
||||
use Symfony\Component\Serializer\Attribute\Groups;
|
||||
use Symfony\Component\Serializer\Normalizer\DateTimeNormalizer;
|
||||
|
||||
/**
|
||||
* Represents a pickup location with timing and pricing information.
|
||||
*
|
||||
* This class handles pickup point data including location details, scheduled times,
|
||||
* pricing, and participant mapping. It provides serialization groups for API
|
||||
* responses and booking management.
|
||||
*/
|
||||
class Pickup
|
||||
{
|
||||
#[Groups(['api:list'])]
|
||||
|
||||
Reference in New Issue
Block a user