From 2fdbabc98a6852538dee147e4f13546a655efbbe Mon Sep 17 00:00:00 2001 From: Viktor Khokhryakov Date: Mon, 2 Sep 2024 12:47:22 +0400 Subject: [PATCH] Fix \ceLTIc\LTI\LineItem::fromEndpoint --- src/LineItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LineItem.php b/src/LineItem.php index b4fd788..eccb97a 100644 --- a/src/LineItem.php +++ b/src/LineItem.php @@ -197,7 +197,7 @@ public static function fromEndpoint(Platform $platform, string $endpoint): LineI { $lineItemService = new Service\LineItem($platform, $endpoint); - return lineItemService->get(); + return $lineItemService->get(); } }