ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Association.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  public function __construct(private Field $field, private Field $reference_field)
26  {
27  }
28 
29  public function field(): Field
30  {
31  return $this->field;
32  }
33 
34  public function referenceField(): Field
35  {
36  return $this->reference_field;
37  }
38 }
__construct(private Field $field, private Field $reference_field)
Definition: Association.php:25