ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
View.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
27 
28 class 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 
38  {
39  return $this->object_data_iterator;
40  }
41 
43  {
44  return $this->lp_iterator;
45  }
46 
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