liuzejian 1 год назад
Родитель
Сommit
0765c44b7a
1 измененных файлов с 32 добавлено и 0 удалено
  1. 32 0
      modules/Yinliu/Installer.php

+ 32 - 0
modules/Yinliu/Installer.php

@@ -0,0 +1,32 @@
+<?php
+
+namespace Modules\Yinliu;
+
+use Catch\Support\Module\Installer as ModuleInstaller;
+use Modules\Yinliu\Providers\YinliuServiceProvider;
+
+class Installer extends ModuleInstaller
+{
+    protected function info(): array
+    {
+        // TODO: Implement info() method.
+        return [
+            'title' => '引流管理',
+            'name' => 'yinliu',
+            'path' => 'yinliu',
+            'keywords' => '引流管理',
+            'description' => '引流管理模块',
+            'provider' => YinliuServiceProvider::class
+        ];
+    }
+
+    protected function requirePackages(): void
+    {
+        // TODO: Implement requirePackages() method.
+    }
+
+    protected function removePackages(): void
+    {
+        // TODO: Implement removePackages() method.
+    }
+}