@@ -87,9 +87,9 @@ class CodeCommitClient extends AbstractApi
8787 *
8888 * @param array{
8989 * repositoryName: string,
90- * repositoryDescription?: null| string,
91- * tags?: null| array<string, string>,
92- * kmsKeyId?: null| string,
90+ * repositoryDescription?: string|null ,
91+ * tags?: array<string, string>|null ,
92+ * kmsKeyId?: string|null ,
9393 * '@region'?: string|null,
9494 * }|CreateRepositoryInput $input
9595 *
@@ -228,8 +228,8 @@ public function getBlob($input): GetBlobOutput
228228 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-codecommit-2015-04-13.html#getbranch
229229 *
230230 * @param array{
231- * repositoryName?: null| string,
232- * branchName?: null| string,
231+ * repositoryName?: string|null ,
232+ * branchName?: string|null ,
233233 * '@region'?: string|null,
234234 * }|GetBranchInput $input
235235 *
@@ -318,12 +318,12 @@ public function getCommit($input): GetCommitOutput
318318 *
319319 * @param array{
320320 * repositoryName: string,
321- * beforeCommitSpecifier?: null| string,
321+ * beforeCommitSpecifier?: string|null ,
322322 * afterCommitSpecifier: string,
323- * beforePath?: null| string,
324- * afterPath?: null| string,
325- * MaxResults?: null| int,
326- * NextToken?: null| string,
323+ * beforePath?: string|null ,
324+ * afterPath?: string|null ,
325+ * MaxResults?: int|null ,
326+ * NextToken?: string|null ,
327327 * '@region'?: string|null,
328328 * }|GetDifferencesInput $input
329329 *
@@ -376,9 +376,9 @@ public function getDifferences($input): GetDifferencesOutput
376376 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-codecommit-2015-04-13.html#listrepositories
377377 *
378378 * @param array{
379- * nextToken?: null| string,
380- * sortBy?: null| SortByEnum::*,
381- * order?: null| OrderEnum::*,
379+ * nextToken?: string|null ,
380+ * sortBy?: SortByEnum::*|null ,
381+ * order?: OrderEnum::*|null ,
382382 * '@region'?: string|null,
383383 * }|ListRepositoriesInput $input
384384 *
0 commit comments