UpDownVote.php 145 Bytes
<?php

namespace FootyRoom\Core\Comment;

use MyCLabs\Enum\Enum;

final class UpDownVote extends Enum
{
    const UP = 1;
    const DOWN = -1;
}