8889841chome/clixcotz/lions.clix.co.tz/wp-content/plugins/give/src/Log/Commands/FlushLogsCommand.php000064400000001471150513460270026157 0ustar00logRepository = $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()); } } }