ILIAS  trunk Revision v11.0_alpha-2658-ge2404539063
NullProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 class NullProvider implements Provider
28 {
29  public function getFullyQualifiedClassName(): string
30  {
31  return static::class;
32  }
33 
34  public function getProviderNameForPresentation(): string
35  {
36  return 'Null';
37  }
38 }