Skip to content

Commit 7046f5f

Browse files
authored
Update CS dependencies (#1688)
1 parent 910c16d commit 7046f5f

12 files changed

+25
-25
lines changed

src/Input/StartBuildInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ final class StartBuildInput extends Input
5050

5151
/**
5252
* The version of the build input to be built, for this build only. If not specified, the latest version is used. If
53-
* specified, the contents depends on the source provider:.
53+
* specified, the contents depends on the source provider:
5454
*
5555
* - `CodeCommit`:
5656
*
@@ -298,7 +298,7 @@ final class StartBuildInput extends Input
298298
private $registryCredentialOverride;
299299

300300
/**
301-
* The type of credentials CodeBuild uses to pull images in your build. There are two valid values:.
301+
* The type of credentials CodeBuild uses to pull images in your build. There are two valid values:
302302
*
303303
* - `CODEBUILD`:
304304
*

src/ValueObject/Build.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ final class Build
5353
private $currentPhase;
5454

5555
/**
56-
* The current status of the build. Valid values include:.
56+
* The current status of the build. Valid values include:
5757
*
5858
* - `FAILED`: The build failed.
5959
* - `FAULT`: The build faulted.
@@ -119,7 +119,7 @@ final class Build
119119
private $secondarySources;
120120

121121
/**
122-
* An array of `ProjectSourceVersion` objects. Each `ProjectSourceVersion` must be one of:.
122+
* An array of `ProjectSourceVersion` objects. Each `ProjectSourceVersion` must be one of:
123123
*
124124
* - For CodeCommit: the commit ID, branch, or Git tag to use.
125125
* - For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source
@@ -199,7 +199,7 @@ final class Build
199199
private $buildComplete;
200200

201201
/**
202-
* The entity that started the build. Valid values include:.
202+
* The entity that started the build. Valid values include:
203203
*
204204
* - If CodePipeline started the build, the pipeline's name (for example, `codepipeline/my-demo-pipeline`).
205205
* - If a user started the build, the user's name (for example, `MyUserName`).

src/ValueObject/BuildPhase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class BuildPhase
1212
{
1313
/**
14-
* The name of the build phase. Valid values include:.
14+
* The name of the build phase. Valid values include:
1515
*
1616
* - `BUILD`:
1717
*
@@ -52,7 +52,7 @@ final class BuildPhase
5252
private $phaseType;
5353

5454
/**
55-
* The current status of the build phase. Valid values include:.
55+
* The current status of the build phase. Valid values include:
5656
*
5757
* - `FAILED`:
5858
*

src/ValueObject/CloudWatchLogsConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class CloudWatchLogsConfig
1212
{
1313
/**
14-
* The current status of the logs in CloudWatch Logs for a build project. Valid values are:.
14+
* The current status of the logs in CloudWatch Logs for a build project. Valid values are:
1515
*
1616
* - `ENABLED`: CloudWatch Logs are enabled for this build project.
1717
* - `DISABLED`: CloudWatch Logs are not enabled for this build project.

src/ValueObject/EnvironmentVariable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ final class EnvironmentVariable
3030
private $value;
3131

3232
/**
33-
* The type of environment variable. Valid values include:.
33+
* The type of environment variable. Valid values include:
3434
*
3535
* - `PARAMETER_STORE`: An environment variable stored in Systems Manager Parameter Store. For environment variables of
3636
* this type, specify the name of the parameter as the `value` of the EnvironmentVariable. The parameter value will be

src/ValueObject/ProjectArtifacts.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
final class ProjectArtifacts
1515
{
1616
/**
17-
* The type of build output artifact. Valid values include:.
17+
* The type of build output artifact. Valid values include:
1818
*
1919
* - `CODEPIPELINE`: The build project has build output generated through CodePipeline.
2020
*
@@ -28,7 +28,7 @@ final class ProjectArtifacts
2828
private $type;
2929

3030
/**
31-
* Information about the build output artifact location:.
31+
* Information about the build output artifact location:
3232
*
3333
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
3434
* manages its build output locations instead of CodeBuild.
@@ -40,7 +40,7 @@ final class ProjectArtifacts
4040
private $location;
4141

4242
/**
43-
* Along with `namespaceType` and `name`, the pattern that CodeBuild uses to name and store the output artifact:.
43+
* Along with `namespaceType` and `name`, the pattern that CodeBuild uses to name and store the output artifact:
4444
*
4545
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
4646
* manages its build output names instead of CodeBuild.
@@ -56,7 +56,7 @@ final class ProjectArtifacts
5656

5757
/**
5858
* Along with `path` and `name`, the pattern that CodeBuild uses to determine the name and location to store the output
59-
* artifact:.
59+
* artifact:
6060
*
6161
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
6262
* manages its build output names instead of CodeBuild.
@@ -75,7 +75,7 @@ final class ProjectArtifacts
7575
private $namespaceType;
7676

7777
/**
78-
* Along with `path` and `namespaceType`, the pattern that CodeBuild uses to name and store the output artifact:.
78+
* Along with `path` and `namespaceType`, the pattern that CodeBuild uses to name and store the output artifact:
7979
*
8080
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
8181
* manages its build output names instead of CodeBuild.
@@ -97,7 +97,7 @@ final class ProjectArtifacts
9797
private $name;
9898

9999
/**
100-
* The type of build output artifact to create:.
100+
* The type of build output artifact to create:
101101
*
102102
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
103103
* manages its build output artifacts instead of CodeBuild.

src/ValueObject/ProjectCache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
final class ProjectCache
1313
{
1414
/**
15-
* The type of cache used by the build project. Valid values include:.
15+
* The type of cache used by the build project. Valid values include:
1616
*
1717
* - `NO_CACHE`: The build project does not use any cache.
1818
* - `S3`: The build project reads and writes from and to S3.
@@ -23,7 +23,7 @@ final class ProjectCache
2323
private $type;
2424

2525
/**
26-
* Information about the cache location:.
26+
* Information about the cache location:
2727
*
2828
* - `NO_CACHE` or `LOCAL`: This value is ignored.
2929
* - `S3`: This is the S3 bucket name/prefix.

src/ValueObject/ProjectEnvironment.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ final class ProjectEnvironment
4343

4444
/**
4545
* The image tag or image digest that identifies the Docker image to use for this build project. Use the following
46-
* formats:.
46+
* formats:
4747
*
4848
* - For an image tag: `<registry>/<repository>:<tag>`. For example, in the Docker repository that
4949
* CodeBuild uses to manage its Docker images, this would be `aws/codebuild/standard:4.0`.
@@ -60,7 +60,7 @@ final class ProjectEnvironment
6060
private $image;
6161

6262
/**
63-
* Information about the compute resources the build project uses. Available values include:.
63+
* Information about the compute resources the build project uses. Available values include:
6464
*
6565
* - `BUILD_GENERAL1_SMALL`: Use up to 3 GB memory and 2 vCPUs for builds.
6666
* - `BUILD_GENERAL1_MEDIUM`: Use up to 7 GB memory and 4 vCPUs for builds.
@@ -163,7 +163,7 @@ final class ProjectEnvironment
163163
private $registryCredential;
164164

165165
/**
166-
* The type of credentials CodeBuild uses to pull images in your build. There are two valid values:.
166+
* The type of credentials CodeBuild uses to pull images in your build. There are two valid values:
167167
*
168168
* - `CODEBUILD` specifies that CodeBuild uses its own credentials. This requires that you modify your ECR repository
169169
* policy to trust CodeBuild service principal.

src/ValueObject/ProjectSource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
final class ProjectSource
1212
{
1313
/**
14-
* The type of repository that contains the source code to be built. Valid values include:.
14+
* The type of repository that contains the source code to be built. Valid values include:
1515
*
1616
* - `BITBUCKET`: The source code is in a Bitbucket repository.
1717
* - `CODECOMMIT`: The source code is in an CodeCommit repository.
@@ -26,7 +26,7 @@ final class ProjectSource
2626
private $type;
2727

2828
/**
29-
* Information about the location of the source code to be built. Valid values include:.
29+
* Information about the location of the source code to be built. Valid values include:
3030
*
3131
* - For source code settings that are specified in the source action of a pipeline in CodePipeline, `location` should
3232
* not be specified. If it is specified, CodePipeline ignores it. This is because CodePipeline uses the settings in a

src/ValueObject/ProjectSourceVersion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class ProjectSourceVersion
1818
private $sourceIdentifier;
1919

2020
/**
21-
* The source version for the corresponding source identifier. If specified, must be one of:.
21+
* The source version for the corresponding source identifier. If specified, must be one of:
2222
*
2323
* - For CodeCommit: the commit ID, branch, or Git tag to use.
2424
* - For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source

src/ValueObject/RegistryCredential.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use AsyncAws\Core\Exception\InvalidArgument;
77

88
/**
9-
* Information about credentials that provide access to a private Docker registry. When this is set:.
9+
* Information about credentials that provide access to a private Docker registry. When this is set:
1010
*
1111
* - `imagePullCredentialsType` must be set to `SERVICE_ROLE`.
1212
* - images cannot be curated or an Amazon ECR image.

src/ValueObject/S3LogsConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
final class S3LogsConfig
1313
{
1414
/**
15-
* The current status of the S3 build logs. Valid values are:.
15+
* The current status of the S3 build logs. Valid values are:
1616
*
1717
* - `ENABLED`: S3 build logs are enabled for this build project.
1818
* - `DISABLED`: S3 build logs are not enabled for this build project.

0 commit comments

Comments
 (0)