]> BookStack Code Mirror - bookstack/blob - app/Repos/CommentRepo.php
Added comments controller, model, repo, and the database schema. Modified existing...
[bookstack] / app / Repos / CommentRepo.php
1 <?php namespace BookStack\Repos;
2
3 use BookStack\Comment;
4 use BookStack\Entity;
5
6 /**
7  * Class TagRepo
8  * @package BookStack\Repos
9  */
10 class CommentRepo {
11     /**
12      *
13      * @var Comment $comment 
14      */
15     protected $comment;
16     
17 }