PollVerlaine/src/Format.php

14 lines
207 B
PHP
Raw Normal View History

2018-08-26 11:11:48 +02:00
<?php
class Format
{
public static function poll($poll)
{
return [
"id" => $poll->id,
"title" => $poll->title,
"creation_date" => $poll->creation_date,
"options" => $poll->options,
];
}
}