Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105956502
PhabricatorNeverTriggerClock.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Mar 21, 02:25
Size
401 B
Mime Type
text/x-php
Expires
Sun, Mar 23, 02:25 (2 d)
Engine
blob
Format
Raw Data
Handle
25084046
Attached To
rPH Phabricator
PhabricatorNeverTriggerClock.php
View Options
<?php
/**
* Never triggers an event.
*
* This clock can be used for testing, or to cancel events.
*/
final
class
PhabricatorNeverTriggerClock
extends
PhabricatorTriggerClock
{
public
function
validateProperties
(
array
$properties
)
{
PhutilTypeSpec
::
checkMap
(
$properties
,
array
());
}
public
function
getNextEventEpoch
(
$last_epoch
,
$is_reschedule
)
{
return
null
;
}
}
Event Timeline
Log In to Comment