Inital commit for unit test configuration
This commit is contained in:
committed by
Manish Verma
parent
2f0796e954
commit
e0436b7757
9
vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace Aws\signer\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **AWS Signer** service.
|
||||
*/
|
||||
class signerException extends AwsException {}
|
||||
27
vendor/aws/aws-sdk-php/src/signer/signerClient.php
vendored
Normal file
27
vendor/aws/aws-sdk-php/src/signer/signerClient.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
namespace Aws\signer;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **AWS Signer** service.
|
||||
* @method \Aws\Result cancelSigningProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelSigningProfileAsync(array $args = [])
|
||||
* @method \Aws\Result describeSigningJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeSigningJobAsync(array $args = [])
|
||||
* @method \Aws\Result getSigningPlatform(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getSigningPlatformAsync(array $args = [])
|
||||
* @method \Aws\Result getSigningProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getSigningProfileAsync(array $args = [])
|
||||
* @method \Aws\Result listSigningJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listSigningJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listSigningPlatforms(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listSigningPlatformsAsync(array $args = [])
|
||||
* @method \Aws\Result listSigningProfiles(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listSigningProfilesAsync(array $args = [])
|
||||
* @method \Aws\Result putSigningProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putSigningProfileAsync(array $args = [])
|
||||
* @method \Aws\Result startSigningJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startSigningJobAsync(array $args = [])
|
||||
*/
|
||||
class signerClient extends AwsClient {}
|
||||
Reference in New Issue
Block a user