Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class FeedStoryNotificationGarbageCollector extends PhabricatorGarbageColle..
Decoded Output download
<?php
final class FeedStoryNotificationGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'feed.notifications';
public function getCollectorName() {
return pht('Notifications');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorFeedStoryNotification();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE chronologicalKey < (%d << 32)
ORDER BY chronologicalKey ASC LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class FeedStoryNotificationGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'feed.notifications';
public function getCollectorName() {
return pht('Notifications');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorFeedStoryNotification();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE chronologicalKey < (%d << 32)
ORDER BY chronologicalKey ASC LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}
Function Calls
None |
Stats
MD5 | 8230b237df9eebb90f2f046992b3d831 |
Eval Count | 0 |
Decode Time | 85 ms |