Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114814621
DoorkeeperBridge.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, May 27, 22:22
Size
501 B
Mime Type
text/x-php
Expires
Thu, May 29, 22:22 (2 d)
Engine
blob
Format
Raw Data
Handle
26412508
Attached To
rPH Phabricator
DoorkeeperBridge.php
View Options
<?php
abstract
class
DoorkeeperBridge
extends
Phobject
{
private
$viewer
;
final
public
function
setViewer
(
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
public
function
isEnabled
()
{
return
true
;
}
abstract
public
function
canPullRef
(
DoorkeeperObjectRef
$ref
);
abstract
public
function
pullRefs
(
array
$refs
);
public
function
fillObjectFromData
(
DoorkeeperExternalObject
$obj
,
$result
)
{
}
}
Event Timeline
Log In to Comment