Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121704230
PhabricatorRepositoryMirror.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
Sun, Jul 13, 07:44
Size
762 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 07:44 (2 d)
Engine
blob
Format
Raw Data
Handle
27377284
Attached To
rPH Phabricator
PhabricatorRepositoryMirror.php
View Options
<?php
/**
* TODO: Remove this class and drop the underlying table after some time has
* passed. It currently exists only so that "bin/storage adjust" does not
* complain about the table.
*/
final
class
PhabricatorRepositoryMirror
extends
PhabricatorRepositoryDAO
{
protected
$repositoryPHID
;
protected
$remoteURI
;
protected
$credentialPHID
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'remoteURI'
=>
'text255'
,
'credentialPHID'
=>
'phid?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_repository'
=>
array
(
'columns'
=>
array
(
'repositoryPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment