[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/xhprof/storage/ -> PhabricatorXHProfSample.php (source)

   1  <?php
   2  
   3  final class PhabricatorXHProfSample extends PhabricatorXHProfDAO {
   4  
   5    protected $filePHID;
   6    protected $usTotal;
   7    protected $sampleRate;
   8    protected $hostname;
   9    protected $requestPath;
  10    protected $controller;
  11    protected $userPHID;
  12  
  13    public function getConfiguration() {
  14      return array(
  15        self::CONFIG_COLUMN_SCHEMA => array(
  16          'sampleRate' => 'uint32',
  17          'usTotal' => 'uint64',
  18          'hostname' => 'text255?',
  19          'requestPath' => 'text255?',
  20          'controller' => 'text255?',
  21          'userPHID' => 'phid?',
  22        ),
  23        self::CONFIG_KEY_SCHEMA => array(
  24          'filePHID' => array(
  25            'columns' => array('filePHID'),
  26            'unique' => true,
  27          ),
  28        ),
  29      ) + parent::getConfiguration();
  30    }
  31  
  32  }


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