Page MenuHomestyx hydra

PhabricatorRepositoryMirror.php
No OneTemporary

PhabricatorRepositoryMirror.php

<?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();
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Nov 21, 3:14 PM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
347622
Default Alt Text
PhabricatorRepositoryMirror.php (762 B)

Event Timeline