ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullOptionTranslation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  public function language(): string
28  {
29  return '';
30  }
31 
32  public function getValue(): string
33  {
34  return '';
35  }
36 
37  public function setValue(string $value): void
38  {
39  }
40 
41  public function isPersisted(): bool
42  {
43  return false;
44  }
45 
46  public function containsChanges(): bool
47  {
48  return false;
49  }
50 }
containsChanges()
Was the contained data altered with respect to what is persisted? Returns true if not persisted...