ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullProvider.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27class 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}