ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
View.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=0);
20
22
27
28class View implements ViewInterface
29{
30 public function __construct(
31 protected ObjectDataIteratorInterface $object_data_iterator,
32 protected LPIteratorInterface $lp_iterator,
33 protected CombinedIteratorInterface $combined_iterator
34 ) {
35 }
36
37 public function objectIterator(): ObjectDataIteratorInterface
38 {
39 return $this->object_data_iterator;
40 }
41
42 public function lpInfoIterator(): LPIteratorInterface
43 {
44 return $this->lp_iterator;
45 }
46
47 public function combinedInfoIterator(): CombinedIteratorInterface
48 {
49 return $this->combined_iterator;
50 }
51}
__construct(protected ObjectDataIteratorInterface $object_data_iterator, protected LPIteratorInterface $lp_iterator, protected CombinedIteratorInterface $combined_iterator)
Definition: View.php:30