From 628d126baf00d11cb95a8e1ecdbb9775a45b5779 Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 23 Aug 2023 12:49:58 -0400 Subject: [PATCH] Updated exception message in \ncc\Objects > RemotePackageInput > __construct() --- src/ncc/Objects/RemotePackageInput.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncc/Objects/RemotePackageInput.php b/src/ncc/Objects/RemotePackageInput.php index 3948a22..acd5bb5 100644 --- a/src/ncc/Objects/RemotePackageInput.php +++ b/src/ncc/Objects/RemotePackageInput.php @@ -76,7 +76,7 @@ } else { - throw new InvalidArgumentException('Input does not match the expected pattern.'); + throw new InvalidArgumentException(sprintf('Invalid remote package input: %s', $input)); } }