|
1
|
<?php |
|
2
|
|
|
3
|
namespace AC\ListScreenRepository; |
|
4
|
|
|
5
|
use AC\ListScreenCollection; |
|
6
|
|
|
7
|
interface Sort { |
|
8
|
|
|
9
|
/** |
|
10
|
* @param ListScreenCollection $list_screens
|
|
11
|
*
|
|
12
|
* @return ListScreenCollection |
|
13
|
*/ |
|
14
|
public function sort( ListScreenCollection $list_screens ); |
|
15
|
|
|
16
|
}
|