OneForumPostQuery.php 475 Bytes
<?php

namespace FootyRoom\Queries\Post;

/**
 * Query to return a specific post.
 */
class OneForumPostQuery
{
    /**
     * @var int
     */
    protected $postId;

    /**
     * Constructor.
     *
     * @param int $postId
     */
    public function __construct($postId)
    {
        $this->postId = $postId;
    }

    /**
     * Gets the value of postId.
     *
     * @return int
     */
    public function getPostId()
    {
        return $this->postId;
    }
}