27 lines
461 B
PHP
27 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class WeatherGovService
|
|
{
|
|
public function fetchOfficesList($weatherOffice, $gridX, $gridY): array
|
|
{
|
|
//
|
|
}
|
|
|
|
public function fetchHourlyReport($weatherOffice, $gridX, $gridY): array
|
|
{
|
|
//
|
|
}
|
|
|
|
public function fetchDailyReport($weatherOffice, $gridX, $gridY): array
|
|
{
|
|
//
|
|
}
|
|
|
|
public function fetchWeeklyReport($weatherOffice, $gridX, $gridY): array
|
|
{
|
|
//
|
|
}
|
|
}
|