mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-12-22 10:25:01 +00:00
8 lines
168 B
PHP
8 lines
168 B
PHP
|
<?php
|
||
|
|
||
|
namespace AirQuality\Repositories;
|
||
|
|
||
|
interface IMeasurementDataRepository {
|
||
|
public function get_readings_by_date(DateTime $datetime, string $reading_type);
|
||
|
}
|