[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/herald/storage/ -> HeraldAction.php (source)

   1  <?php
   2  
   3  final class HeraldAction extends HeraldDAO {
   4  
   5    protected $ruleID;
   6  
   7    protected $action;
   8    protected $target;
   9  
  10    protected function getConfiguration() {
  11      return array(
  12        self::CONFIG_SERIALIZATION => array(
  13          'target' => self::SERIALIZATION_JSON,
  14        ),
  15        self::CONFIG_TIMESTAMPS => false,
  16        self::CONFIG_COLUMN_SCHEMA => array(
  17          'action' => 'text255',
  18          'target' => 'text',
  19        ),
  20        self::CONFIG_KEY_SCHEMA => array(
  21          'ruleID' => array(
  22            'columns' => array('ruleID'),
  23          ),
  24        ),
  25      ) + parent::getConfiguration();
  26    }
  27  
  28  
  29  }


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