ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
NullData.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
25 class NullData implements DataInterface
26 {
27  public function dataValue(ElementsDataInterface $data): string
28  {
29  return '';
30  }
31 
32  public function vocabularyValue(string $value): string
33  {
34  return '';
35  }
36 
37  public function language(string $language): string
38  {
39  return '';
40  }
41 
42  public function datetime(string $datetime): string
43  {
44  return '';
45  }
46 
47  public function duration(string $duration): string
48  {
49  return '';
50  }
51 }
$datetime
$duration
dataValue(ElementsDataInterface $data)
Definition: NullData.php:27