App\Http\Controllers\CommentController::__construct PHP Method

__construct() public method

CommentController constructor.
public __construct ( CommentRepository $comment )
$comment App\Repositories\CommentRepository
    public function __construct(CommentRepository $comment)
    {
        $this->comment = $comment;
        $this->middleware('auth', ['only' => ['index', 'destroy']]);
    }