File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1919
2020 /**
2121 * Specify the CloudFront Distribution ID.
22- * Example format: EBCYQAQALNSKL
22+ * Example format: EBCYQAQALNSKL.
2323 */
2424 'distribution_id ' => env ('AWS_CLOUDFRONT_DISTRIBUTION_ID ' ),
2525
Original file line number Diff line number Diff line change 22
33namespace Meema \CloudFront ;
44
5- use Aws \Credentials \Credentials ;
65use Aws \CloudFront \CloudFrontClient ;
6+ use Aws \Credentials \Credentials ;
77use Aws \Exception \AwsException ;
88use Meema \CloudFront \Contracts \CloudFront as CloudFrontInterface ;
99
@@ -109,7 +109,7 @@ public function listInvalidations(string $distributionId = null)
109109 {
110110 try {
111111 $ invalidations = $ this ->client ->listInvalidations ([
112- 'DistributionId ' => $ distributionId ?? config ('cloudfront.distribution_id ' ) ,
112+ 'DistributionId ' => $ distributionId ?? config ('cloudfront.distribution_id ' ),
113113 ]);
114114
115115 $ messages = [];
Original file line number Diff line number Diff line change 22
33namespace Meema \CloudFront ;
44
5- use Aws \Credentials \Credentials ;
65use Aws \CloudFront \CloudFrontClient ;
6+ use Aws \Credentials \Credentials ;
77use Exception ;
88use Illuminate \Support \Manager ;
99
Original file line number Diff line number Diff line change 22
33namespace Meema \CloudFront \Providers ;
44
5- use Illuminate \Routing \Router ;
65use Illuminate \Support \ServiceProvider ;
7- use Meema \CloudFront \Facades \CloudFront ;
8- use Meema \CloudFront \Http \Middleware \VerifySignature ;
96use Meema \CloudFront \CloudFrontManager ;
7+ use Meema \CloudFront \Facades \CloudFront ;
108
119class CloudFrontServiceProvider extends ServiceProvider
1210{
You can’t perform that action at this time.
0 commit comments