. /** * Class cli_progress_tracker * * @package tool_uploaduser * @copyright 2020 Marina Glancy * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_uploaduser\local; /** * Tracks the progress of the user upload and outputs it in CLI script (writes to STDOUT) * * @package tool_uploaduser * @copyright 2020 Marina Glancy * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class cli_progress_tracker extends text_progress_tracker { /** * Output one line (followed by newline) * @param string $line */ protected function output_line(string $line): void { cli_writeln($line); } }