for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Sends out email notifications for new/updated topics.
*
* @name ElkArte Forum
* @copyright ElkArte Forum contributors
* @license BSD http://opensource.org/licenses/BSD-3-Clause
* @version 1.1
*/
namespace ElkArte\sources\subs\ScheduledTask;
* Class Weekly_Digest
* - Like the daily stuff - just seven times less regular ;)
* - This method forwards to daily_digest()
* @package ScheduledTasks
class Weekly_Digest implements Scheduled_Task_Interface
{
* Sends the weekly digest.
* @return bool
public function run()
$digest = new Daily_Digest();
return $digest->runDigest(true);
}