mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
9 lines
123 B
PHP
9 lines
123 B
PHP
|
<?php
|
||
|
|
||
|
interface PonderVotableInterface {
|
||
|
|
||
|
public function getUserVoteEdgeType();
|
||
|
public function getVotablePHID();
|
||
|
|
||
|
}
|