initital commit

This commit is contained in:
2025-01-26 21:17:23 +01:00
commit 2a7345ba56
72 changed files with 9458 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
declare(strict_types=1);
namespace App\DTO\Edge\Response\Mapper;
use App\DTO\Edge\Response\WeatherAtTimePointResponse;
use App\DTO\Edge\Response\WeatherAtTimeResponse;
class WeatherAtTimeResponseMapper
{
public function __construct()
{
}
/**
* @param array<WeatherAtTimePointResponse> $points
*/
public function mapResponse(string $city, array $points): WeatherAtTimeResponse
{
return new WeatherAtTimeResponse(
$city,
$points
);
}
}