We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cb1e21 commit fba46ffCopy full SHA for fba46ff
script.php
@@ -12,15 +12,27 @@
12
13
use Joomla\CMS\Factory;
14
use Joomla\CMS\Installer\Adapter\PluginAdapter;
15
+use Joomla\CMS\Installer\InstallerScript;
16
17
/**
18
* ClassExtender script file.
19
*
20
* @package Obix Class Extender System Plugin
21
* @since 1.0.0
22
*/
-class plgSystemClassExtenderInstallerScript
23
+class plgSystemClassExtenderInstallerScript extends InstallerScript
24
{
25
+ /**
26
+ * Extension script constructor.
27
+ *
28
+ * @since 1.2.0
29
+ */
30
+ public function __construct()
31
+ {
32
+ $this->minimumJoomla = '3.9';
33
+ $this->minimumPhp = '7.4';
34
+ }
35
+
36
37
* Called after any type of action.
38
0 commit comments