We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 880e9b1 commit 18d1007Copy full SHA for 18d1007
1 file changed
src/Timeline/Installer/TimelineInstaller.php
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+namespace Inachis\Timeline\Installer;
4
5
+use Inachis\Plugin\PluginInstallerInterface;
6
7
+final class TimelineInstaller implements PluginInstallerInterface
8
+{
9
+ public function install(): void
10
+ {
11
+ // seed default timeline data or setup permissions
12
+ }
13
14
+ public function update(string $from, string $to): void
15
16
+ // handle version upgrades
17
18
19
+ public function uninstall(): void
20
21
+ // clean up plugin-specific data
22
23
+}
0 commit comments