[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/conduit/storage/ -> PhabricatorConduitConnectionLog.php (source)

   1  <?php
   2  
   3  final class PhabricatorConduitConnectionLog extends PhabricatorConduitDAO {
   4  
   5    protected $client;
   6    protected $clientVersion;
   7    protected $clientDescription;
   8    protected $username;
   9  
  10    public function getConfiguration() {
  11      return array(
  12        self::CONFIG_COLUMN_SCHEMA => array(
  13          'client' => 'text255?',
  14          'clientVersion' => 'text255?',
  15          'clientDescription' => 'text255?',
  16          'username' => 'text255?',
  17        ),
  18        self::CONFIG_KEY_SCHEMA => array(
  19          'key_created' => array(
  20            'columns' => array('dateCreated'),
  21          ),
  22        ),
  23      ) + parent::getConfiguration();
  24    }
  25  
  26  }


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