1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-03 10:28:23 +01:00
phorge-phorge/src/applications/slowvote/storage/PhabricatorSlowvoteChoice.php

23 lines
462 B
PHP
Raw Normal View History

<?php
final class PhabricatorSlowvoteChoice extends PhabricatorSlowvoteDAO {
protected $pollID;
protected $optionID;
protected $authorPHID;
public function getConfiguration() {
return array(
self::CONFIG_KEY_SCHEMA => array(
'pollID' => array(
'columns' => array('pollID'),
),
'authorPHID' => array(
'columns' => array('authorPHID'),
),
),
) + parent::getConfiguration();
}
}