@@ -474,19 +474,19 @@ private function requestBody(): array
474474 {
475475 $ payload = [];
476476 if (null === $ v = $ this ->name ) {
477- throw new InvalidArgument (sprintf ('Missing parameter "Name" for "%s". The value cannot be null. ' , __CLASS__ ));
477+ throw new InvalidArgument (\ sprintf ('Missing parameter "Name" for "%s". The value cannot be null. ' , __CLASS__ ));
478478 }
479479 $ payload ['Name ' ] = $ v ;
480480 if (null !== $ v = $ this ->description ) {
481481 $ payload ['Description ' ] = $ v ;
482482 }
483483 if (null === $ v = $ this ->value ) {
484- throw new InvalidArgument (sprintf ('Missing parameter "Value" for "%s". The value cannot be null. ' , __CLASS__ ));
484+ throw new InvalidArgument (\ sprintf ('Missing parameter "Value" for "%s". The value cannot be null. ' , __CLASS__ ));
485485 }
486486 $ payload ['Value ' ] = $ v ;
487487 if (null !== $ v = $ this ->type ) {
488488 if (!ParameterType::exists ($ v )) {
489- throw new InvalidArgument (sprintf ('Invalid parameter "Type" for "%s". The value "%s" is not a valid "ParameterType". ' , __CLASS__ , $ v ));
489+ throw new InvalidArgument (\ sprintf ('Invalid parameter "Type" for "%s". The value "%s" is not a valid "ParameterType". ' , __CLASS__ , $ v ));
490490 }
491491 $ payload ['Type ' ] = $ v ;
492492 }
@@ -509,7 +509,7 @@ private function requestBody(): array
509509 }
510510 if (null !== $ v = $ this ->tier ) {
511511 if (!ParameterTier::exists ($ v )) {
512- throw new InvalidArgument (sprintf ('Invalid parameter "Tier" for "%s". The value "%s" is not a valid "ParameterTier". ' , __CLASS__ , $ v ));
512+ throw new InvalidArgument (\ sprintf ('Invalid parameter "Tier" for "%s". The value "%s" is not a valid "ParameterTier". ' , __CLASS__ , $ v ));
513513 }
514514 $ payload ['Tier ' ] = $ v ;
515515 }
0 commit comments