/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Log/Commands
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Log/Commands/FlushLogsCommand.php (825B)
logRepository = $repository;
}
/**
* Flush logs
* ## EXAMPLE
*
* wp give flush-logs
*/
public function __invoke()
{
try {
$this->logRepository->flushLogs();
WP_CLI::success('Logs flushed');
} catch (\Exception $e) {
WP_CLI::error($e->getMessage());
}
}
}