ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Combined.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
24 
25 class Combined implements CombinedInterface
26 {
27  public function __construct(
28  protected LPInterface $lp_info,
29  protected ObjectDataInterface $obj_info
30  ) {
31  }
32 
33  public function getLPInfo(): LPInterface
34  {
35  return $this->lp_info;
36  }
37 
39  {
40  return $this->obj_info;
41  }
42 }
__construct(protected LPInterface $lp_info, protected ObjectDataInterface $obj_info)
Definition: Combined.php:27