From c4524c68b9467502b4838cc15e0c2f0900153ff1 Mon Sep 17 00:00:00 2001 From: Ezra Sharp Date: Sun, 28 Apr 2024 12:46:37 +1200 Subject: [PATCH] [Laravel 10] Fix syntax typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c1680b..010e9a7 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Lastly, publish the config file. You can get your API key from [Steam](http://s use Syntax\SteamApi\Facades\SteamApi; /** Get Portal 2 */ -$apps = SteamApi::app()->appDetails([620]); +$apps = SteamApi::app()->appDetails(620); echo $app->first()->name; ```