Ver Fonte

feat: 🐛 add abstract extension class

IceToast há 2 anos atrás
pai
commit
ca3e31580f
1 ficheiros alterados com 9 adições e 0 exclusões
  1. 9 0
      app/Helpers/AbstractExtension.php

+ 9 - 0
app/Helpers/AbstractExtension.php

@@ -0,0 +1,9 @@
+<?php
+
+namespace App\Helpers;
+
+// create a abstract class for the extension that will contain all the methods that will be used in the extension
+abstract class AbstractExtension
+{
+    abstract public static function getConfig(): array;
+}