| 1 | <?php  | 
            ||
| 16 | final class RemoveCommentCommand  | 
            ||
| 17 | { | 
            ||
| 18 | /**  | 
            ||
| 19 | * The comment to remove.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @var \Gitamin\Models\Comment  | 
            ||
| 22 | */  | 
            ||
| 23 | public $comment;  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * Create a new remove comment command instance.  | 
            ||
| 27 | *  | 
            ||
| 28 | * @param \Gitamin\Models\Comment $comment  | 
            ||
| 29 | */  | 
            ||
| 30 | public function __construct(Comment $comment)  | 
            ||
| 34 | }  | 
            ||
| 35 |