1 | <?php |
||
14 | class DisplayView implements \IteratorAggregate |
||
15 | { |
||
16 | /** |
||
17 | * @var View[] |
||
18 | */ |
||
19 | protected $properties; |
||
20 | |||
21 | public function __construct() |
||
25 | |||
26 | /** |
||
27 | * @param \FSi\Bundle\AdminBundle\Display\Property\View $propertyView |
||
28 | */ |
||
29 | public function add(View $propertyView) |
||
33 | |||
34 | /** |
||
35 | * @return \ArrayIterator|\Traversable |
||
36 | */ |
||
37 | public function getIterator() |
||
41 | } |
||
42 |