diff options
author | Jonas Kohl | 2024-09-08 17:53:55 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-08 17:53:55 +0200 |
commit | 415a0a96a76afbe7f1ad2f51862641793caf1b6c (patch) | |
tree | 1168316bff6a2ec04ee27db5ada5431ba6631ce4 /src/application/mystic/forum/utils/StaticClass.php |
Initial commit
Diffstat (limited to 'src/application/mystic/forum/utils/StaticClass.php')
-rw-r--r-- | src/application/mystic/forum/utils/StaticClass.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/application/mystic/forum/utils/StaticClass.php b/src/application/mystic/forum/utils/StaticClass.php new file mode 100644 index 0000000..e55ada9 --- /dev/null +++ b/src/application/mystic/forum/utils/StaticClass.php @@ -0,0 +1,10 @@ +<?php +declare(strict_types=1); + +namespace mystic\forum\utils; + +trait StaticClass { + public function __construct() { + throw new \RuntimeException("Cannot instantiate static class " . self::class); + } +} |