|
1
|
<?php |
|
2
|
|
|
3
|
namespace AC\Settings; |
|
4
|
|
|
5
|
use AC\Collection; |
|
6
|
|
|
7
|
interface FormatCollection { |
|
8
|
|
|
9
|
/** |
|
10
|
* @param Collection $collection
|
|
11
|
* @param mixed $original_value
|
|
12
|
*
|
|
13
|
* @return mixed |
|
14
|
*/ |
|
15
|
public function format( Collection $collection, $original_value ); |
|
16
|
|
|
17
|
}
|