[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorOAuthServerAccessToken 4 extends PhabricatorOAuthServerDAO { 5 6 protected $id; 7 protected $token; 8 protected $userPHID; 9 protected $clientPHID; 10 11 public function getConfiguration() { 12 return array( 13 self::CONFIG_COLUMN_SCHEMA => array( 14 'token' => 'text32', 15 ), 16 self::CONFIG_KEY_SCHEMA => array( 17 'token' => array( 18 'columns' => array('token'), 19 'unique' => true, 20 ), 21 ), 22 ) + parent::getConfiguration(); 23 } 24 25 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |