PhyrePanel-mirror/web/app/ModulePostInstall.php

18 lines
262 B
PHP
Raw Normal View History

2024-04-26 19:05:32 +00:00
<?php
namespace App;
abstract class ModulePostInstall
{
2024-04-26 19:41:48 +00:00
public $supportLog = false;
public function isSupportLog()
{
return $this->supportLog;
}
2024-04-26 19:05:32 +00:00
public function setLogFile($logFile)
{
$this->logFile = $logFile;
}
}