mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
17 lines
262 B
PHP
17 lines
262 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
abstract class ModulePostInstall
|
|
{
|
|
public $supportLog = false;
|
|
|
|
public function isSupportLog()
|
|
{
|
|
return $this->supportLog;
|
|
}
|
|
public function setLogFile($logFile)
|
|
{
|
|
$this->logFile = $logFile;
|
|
}
|
|
}
|