mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Fix EOL in HourlyCleanUpCronjobExecuteChatCleanUpListener
This commit is contained in:
parent
4bc538f367
commit
ea2c6f0039
@ -1,28 +1,28 @@
|
||||
<?php
|
||||
namespace chat\system\event\listener;
|
||||
use \chat\data;
|
||||
|
||||
/**
|
||||
* Vaporizes unneeded data.
|
||||
*
|
||||
* @author Tim Düsterhus
|
||||
* @copyright 2010-2013 Tim Düsterhus
|
||||
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||
* @package be.bastelstu.chat
|
||||
* @subpackage system.event.listener
|
||||
*/
|
||||
class HourlyCleanUpCronjobExecuteChatCleanUpListener implements IEventListener {
|
||||
/**
|
||||
* @see \wcf\system\event\IEventListener::execute()
|
||||
*/
|
||||
public function execute($eventObj, $className, $eventName) {
|
||||
$messageAction = new data\message\MessageAction(array(), 'prune');
|
||||
$messageAction->executeAction();
|
||||
$roomAction = new data\room\RoomAction(array(), 'prune');
|
||||
$roomAction->executeAction();
|
||||
|
||||
// kill dead users
|
||||
$roomAction = new data\room\RoomAction(array(), 'removeDeadUsers');
|
||||
$roomAction->executeAction();
|
||||
}
|
||||
}
|
||||
<?php
|
||||
namespace chat\system\event\listener;
|
||||
use \chat\data;
|
||||
|
||||
/**
|
||||
* Vaporizes unneeded data.
|
||||
*
|
||||
* @author Tim Düsterhus
|
||||
* @copyright 2010-2013 Tim Düsterhus
|
||||
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||
* @package be.bastelstu.chat
|
||||
* @subpackage system.event.listener
|
||||
*/
|
||||
class HourlyCleanUpCronjobExecuteChatCleanUpListener implements IEventListener {
|
||||
/**
|
||||
* @see \wcf\system\event\IEventListener::execute()
|
||||
*/
|
||||
public function execute($eventObj, $className, $eventName) {
|
||||
$messageAction = new data\message\MessageAction(array(), 'prune');
|
||||
$messageAction->executeAction();
|
||||
$roomAction = new data\room\RoomAction(array(), 'prune');
|
||||
$roomAction->executeAction();
|
||||
|
||||
// kill dead users
|
||||
$roomAction = new data\room\RoomAction(array(), 'removeDeadUsers');
|
||||
$roomAction->executeAction();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user