9 lines
286 B
PHP
9 lines
286 B
PHP
|
|
<?php
|
||
|
|
defined('_JEXEC') or die;
|
||
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
||
|
|
class Pkg_mokosuitenpoInstallerScript
|
||
|
|
{
|
||
|
|
public function preflight(string $type, InstallerAdapter $adapter): bool { return true; }
|
||
|
|
public function postflight(string $type, InstallerAdapter $adapter): void {}
|
||
|
|
}
|