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