ILIAS  trunk Revision v12.0_alpha-1221-g4e438232683
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}