[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
v1
/
lib
/
pkp
/
classes
/
cliTool
/
[
Home
]
File: ConvertLogFileTool.php
<?php /** * @file lib/pkp/classes/cliTool/ConvertLogFileTool.php * * Copyright (c) 2022 Simon Fraser University * Copyright (c) 2022 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class ConvertLogFileTool * * @ingroup tools * * @brief Tool to convert usage stats log file (used in releases < 3.4) into the new format. * */ namespace PKP\cliTool; use PKP\cliTool\traits\ConvertLogFile; abstract class ConvertLogFileTool extends \PKP\cliTool\CommandLineTool { use ConvertLogFile; /** * Constructor. * * @param array $argv command-line arguments (see usage) */ public function __construct($argv = []) { parent::__construct($argv); $this->__constructTrait(); } }