aswi2020sebela-gitlab/website/src/IOpenDataManager.php @ 1d0806c3
1 |
<?php
|
---|---|
2 | |
3 |
namespace App\OpenData; |
4 | |
5 |
interface IOpenDataManager { |
6 |
public function getCollectionDataByName($name, $date, $hour); |
7 | |
8 |
public function getAvailableCollections(); |
9 | |
10 |
public function getAvailableCollectionsByDay($date); |
11 | |
12 |
public function isCollectionAvailable($name, $date); |
13 | |
14 |
public function getDatesWithAvailableCollection(); |
15 | |
16 |
public function getMaxCollectionNumberAtDay($name, $date); |
17 | |
18 |
public function getDataSourcePositions($name); |
19 |
}
|