Owl\Http\Controllers\CommentController::__construct PHP Метод

__construct() публичный Метод

public __construct ( UserService $userService, ItemService $itemService, CommentService $commentService )
$userService Owl\Services\UserService
$itemService Owl\Services\ItemService
$commentService Owl\Services\CommentService
    public function __construct(UserService $userService, ItemService $itemService, CommentService $commentService)
    {
        $this->userService = $userService;
        $this->itemService = $itemService;
        $this->commentService = $commentService;
    }