| 1 | <?php |
||
| 14 | class Collection implements ValueFormatter |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array|\FSi\Bundle\AdminBundle\Display\Property\ValueFormatter[] |
||
| 18 | */ |
||
| 19 | private $formatters; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array|\FSi\Bundle\AdminBundle\Display\Property\ValueFormatter[] $formatters |
||
| 23 | */ |
||
| 24 | public function __construct(array $formatters) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param mixed $value |
||
| 31 | * @return array|mixed |
||
| 32 | */ |
||
| 33 | public function format($value) |
||
| 55 | } |
||
| 56 |