Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Model\Blog;
- use Dero\Data\Contract;
- class Post extends Contract
- {
- /** @var int */
- public $post_id;
- /** @var int */
- public $user_id;
- /** @var string */
- public $username;
- /** @var int|null */
- public $parent_id;
- /** @var string */
- public $title;
- /** @var string */
- public $body;
- /** @var string */
- public $rawBody;
- /** @var bool */
- public $active;
- /** @var bool */
- public $featured;
- /** @var bool */
- public $published;
- /** @var string|\Datetime */
- public $created;
- /** @var string|\Datetime */
- public $modified;
- }
Add Comment
Please, Sign In to add comment