You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Input/InvocationRequest.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -160,13 +160,13 @@ public function request(): Request
160
160
];
161
161
if (null !== $this->invocationType) {
162
162
if (!InvocationType::exists($this->invocationType)) {
163
-
thrownewInvalidArgument(sprintf('Invalid parameter "InvocationType" for "%s". The value "%s" is not a valid "InvocationType".', __CLASS__, $this->invocationType));
163
+
thrownewInvalidArgument(\sprintf('Invalid parameter "InvocationType" for "%s". The value "%s" is not a valid "InvocationType".', __CLASS__, $this->invocationType));
Copy file name to clipboardExpand all lines: src/Input/ListFunctionsRequest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ public function request(): Request
114
114
}
115
115
if (null !== $this->functionVersion) {
116
116
if (!FunctionVersion::exists($this->functionVersion)) {
117
-
thrownewInvalidArgument(sprintf('Invalid parameter "FunctionVersion" for "%s". The value "%s" is not a valid "FunctionVersion".', __CLASS__, $this->functionVersion));
117
+
thrownewInvalidArgument(\sprintf('Invalid parameter "FunctionVersion" for "%s". The value "%s" is not a valid "FunctionVersion".', __CLASS__, $this->functionVersion));
Copy file name to clipboardExpand all lines: src/Input/ListLayerVersionsRequest.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ public function request(): Request
135
135
$query = [];
136
136
if (null !== $this->compatibleRuntime) {
137
137
if (!Runtime::exists($this->compatibleRuntime)) {
138
-
thrownewInvalidArgument(sprintf('Invalid parameter "CompatibleRuntime" for "%s". The value "%s" is not a valid "Runtime".', __CLASS__, $this->compatibleRuntime));
138
+
thrownewInvalidArgument(\sprintf('Invalid parameter "CompatibleRuntime" for "%s". The value "%s" is not a valid "Runtime".', __CLASS__, $this->compatibleRuntime));
@@ -147,15 +147,15 @@ public function request(): Request
147
147
}
148
148
if (null !== $this->compatibleArchitecture) {
149
149
if (!Architecture::exists($this->compatibleArchitecture)) {
150
-
thrownewInvalidArgument(sprintf('Invalid parameter "CompatibleArchitecture" for "%s". The value "%s" is not a valid "Architecture".', __CLASS__, $this->compatibleArchitecture));
150
+
thrownewInvalidArgument(\sprintf('Invalid parameter "CompatibleArchitecture" for "%s". The value "%s" is not a valid "Architecture".', __CLASS__, $this->compatibleArchitecture));
@@ -254,7 +254,7 @@ private function requestBody(): array
254
254
foreach ($vas$listValue) {
255
255
++$index;
256
256
if (!Architecture::exists($listValue)) {
257
-
thrownewInvalidArgument(sprintf('Invalid parameter "CompatibleArchitectures" for "%s". The value "%s" is not a valid "Architecture".', __CLASS__, $listValue));
257
+
thrownewInvalidArgument(\sprintf('Invalid parameter "CompatibleArchitectures" for "%s". The value "%s" is not a valid "Architecture".', __CLASS__, $listValue));
0 commit comments