ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ChangedUserFieldAttribute.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  public function __construct(
30  private readonly string $attribute_name,
31  private readonly string $old_value,
32  private readonly string $new_value
33  ) {
34  }
35 
36  public function getAttributeName(): string
37  {
38  return $this->attribute_name;
39  }
40 
41  public function getOldValue(): string
42  {
43  return $this->old_value;
44  }
45 
46  public function getNewValue(): string
47  {
48  return $this->new_value;
49  }
50 }
__construct(private readonly string $attribute_name, private readonly string $old_value, private readonly string $new_value)