Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93146134
PholioMockMailReceiver.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
Tue, Nov 26, 13:42
Size
626 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 13:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22581983
Attached To
rPH Phabricator
PholioMockMailReceiver.php
View Options
<?php
final
class
PholioMockMailReceiver
extends
PhabricatorObjectMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorPholioApplication'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
protected
function
getObjectPattern
()
{
return
'M[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
trim
(
$pattern
,
'M'
);
return
id
(
new
PholioMockQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
}
protected
function
getTransactionReplyHandler
()
{
return
new
PholioReplyHandler
();
}
}
Event Timeline
Log In to Comment