1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-31 17:08:22 +01:00
phorge-phorge/src/applications/owners/storage/PhabricatorOwnersPath.php

17 lines
309 B
PHP
Raw Normal View History

2011-04-03 14:48:36 -07:00
<?php
final class PhabricatorOwnersPath extends PhabricatorOwnersDAO {
2011-04-03 14:48:36 -07:00
protected $packageID;
protected $repositoryPHID;
protected $path;
protected $excluded;
2011-04-03 14:48:36 -07:00
public function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
2011-04-03 22:03:27 -07:00
) + parent::getConfiguration();
2011-04-03 14:48:36 -07:00
}
}