[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/owners/storage/ -> PhabricatorOwnersPath.php (source)

   1  <?php
   2  
   3  final class PhabricatorOwnersPath extends PhabricatorOwnersDAO {
   4  
   5    protected $packageID;
   6    protected $repositoryPHID;
   7    protected $path;
   8    protected $excluded;
   9  
  10    public function getConfiguration() {
  11      return array(
  12        self::CONFIG_TIMESTAMPS => false,
  13        self::CONFIG_COLUMN_SCHEMA => array(
  14          'path' => 'text255',
  15          'excluded' => 'bool',
  16        ),
  17        self::CONFIG_KEY_SCHEMA => array(
  18          'packageID' => array(
  19            'columns' => array('packageID'),
  20          ),
  21        ),
  22      ) + parent::getConfiguration();
  23    }
  24  
  25  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1