Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539985
PhabricatorConduitMethodCallLog.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorConduitMethodCallLog.php
View Options
<?php
final
class
PhabricatorConduitMethodCallLog
extends
PhabricatorConduitDAO
implements
PhabricatorPolicyInterface
{
protected
$callerPHID
;
protected
$connectionID
;
protected
$method
;
protected
$error
;
protected
$duration
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
'auto64'
,
'connectionID'
=>
'id64?'
,
'method'
=>
'text64'
,
'error'
=>
'text255'
,
'duration'
=>
'uint64'
,
'callerPHID'
=>
'phid?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_date'
=>
array
(
'columns'
=>
array
(
'dateCreated'
),
),
'key_method'
=>
array
(
'columns'
=>
array
(
'method'
),
),
'key_callermethod'
=>
array
(
'columns'
=>
array
(
'callerPHID'
,
'method'
),
),
),
)
+
parent
::
getConfiguration
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
PhabricatorPolicies
::
POLICY_USER
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:23 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120369
Default Alt Text
PhabricatorConduitMethodCallLog.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment