Jelajahi Sumber

feat: 🐛 add abstract extension class

IceToast 2 tahun lalu
induk
melakukan
ca3e31580f
1 mengubah file dengan 9 tambahan dan 0 penghapusan
  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;
+}