Filter
4 years ago
Rule
4 years ago
Sort
4 years ago
Storage
4 years ago
Database.php
4 years ago
Filter.php
4 years ago
Rule.php
4 years ago
Rules.php
4 years ago
Sort.php
4 years ago
SourceAware.php
4 years ago
Storage.php
4 years ago
SourceAware.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\ListScreenRepository; |
| 4 | |
| 5 | use AC\Type\ListScreenId; |
| 6 | |
| 7 | interface SourceAware { |
| 8 | |
| 9 | /** |
| 10 | * @param ListScreenId $id |
| 11 | * |
| 12 | * @return string |
| 13 | */ |
| 14 | public function get_source( ListScreenId $id ); |
| 15 | |
| 16 | /** |
| 17 | * @param ListScreenId $id |
| 18 | * |
| 19 | * @return bool |
| 20 | */ |
| 21 | public function has_source( ListScreenId $id ); |
| 22 | |
| 23 | } |