Skip to content

Commit

Permalink
fix: icao nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
amvid committed Aug 1, 2024
1 parent 9eaa2ed commit 53102f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .rr.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ http:
pool:
num_workers: ${RR_NUM_WORKERS:-3}
debug: true
supervisor:
exec_ttl: "2s"
static:
dir: "public"
forbid: [ ".php" ]
Expand Down
1 change: 1 addition & 0 deletions .rr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ http:
num_workers: ${RR_NUM_WORKERS:-3}
supervisor:
max_worker_memory: ${RR_WORKER_MAX_MEMORY:-75}
exec_ttl: "2s"
middleware: ["static", "gzip"]
static:
dir: "public"
Expand Down
2 changes: 1 addition & 1 deletion src/Airport/Controller/Response/AirportResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AirportResponse
public UuidInterface $id;
public string $title;
public string $iata;
public string $icao;
public ?string $icao;
public float $rank;
public bool $isActive;
public float $longitude;
Expand Down

0 comments on commit 53102f8

Please sign in to comment.