Current Path : /var/www/html/wp-content/plugins/duplicator-pro/src/Libs/DupArchive/ |
Current File : /var/www/html/wp-content/plugins/duplicator-pro/src/Libs/DupArchive/DupArchiveLoggerBase.php |
<?php /** * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Libs\DupArchive; abstract class DupArchiveLoggerBase { /** * Log function * * @param string $s string to log * @param boolean $flush if true flish log * @param ?callable $callingFunctionOverride call back function * * @return void */ abstract public function log($s, $flush = false, $callingFunctionOverride = null); }