Server IP : 66.29.132.124 / Your IP : 3.137.211.49 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/misswavenigeria.com/wp-content/plugins/totalpoll-lite/src/Contracts/Entry/ |
Upload File : |
<?php namespace TotalPoll\Contracts\Entry; use JsonSerializable; use TotalPollVendors\TotalCore\Contracts\Helpers\Arrayable; /** * Interface Model * @package TotalPoll\Contracts\Entry */ interface Model extends \ArrayAccess, Arrayable, JsonSerializable { /** * Get poll id. * * @return int * @since 1.0.0 */ public function getId(); /** * Get entry date. * * @return \DateTime * @since 1.0.0 */ public function getDate(); /** * Get user ID. * * @return int|null * @since 1.0.0 */ public function getUserId(); /** * Get user. * * @return \WP_User * @since 1.0.0 */ public function getUser(); /** * Get poll ID. * * @return int * @since 1.0.0 */ public function getPollId(); /** * Get poll model. * * @return \TotalPoll\Contracts\Poll\Model * @since 1.0.0 */ public function getPoll(); /** * Get log ID. * * @return int * @since 1.0.0 */ public function getLogId(); /** * Get log model. * * @return \TotalPoll\Contracts\Log\Model * @since 1.0.0 */ public function getLog(); /** * Get fields. * * @return array * @since 1.0.0 */ public function getFields(); /** * Get fields. * * @return array * @since 1.0.0 */ public function getField( $name, $default = null ); /** * Get details. * * @return array * @since 1.0.0 */ public function getDetails(); }