mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 03:13:45 +08:00
17 lines
236 B
PHP
17 lines
236 B
PHP
|
<?php namespace BookStack\Repos;
|
||
|
|
||
|
use BookStack\Comment;
|
||
|
use BookStack\Entity;
|
||
|
|
||
|
/**
|
||
|
* Class TagRepo
|
||
|
* @package BookStack\Repos
|
||
|
*/
|
||
|
class CommentRepo {
|
||
|
/**
|
||
|
*
|
||
|
* @var Comment $comment
|
||
|
*/
|
||
|
protected $comment;
|
||
|
|
||
|
}
|