installed plugin Infinite Uploads
version 2.0.8
This commit is contained in:
26
wp-content/plugins/infinite-uploads/vendor/Aws3/Aws/Signature/AnonymousSignature.php
vendored
Normal file
26
wp-content/plugins/infinite-uploads/vendor/Aws3/Aws/Signature/AnonymousSignature.php
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace UglyRobot\Infinite_Uploads\Aws\Signature;
|
||||
|
||||
use UglyRobot\Infinite_Uploads\Aws\Credentials\CredentialsInterface;
|
||||
use UglyRobot\Infinite_Uploads\Psr\Http\Message\RequestInterface;
|
||||
/**
|
||||
* Provides anonymous client access (does not sign requests).
|
||||
*/
|
||||
class AnonymousSignature implements \UglyRobot\Infinite_Uploads\Aws\Signature\SignatureInterface
|
||||
{
|
||||
/**
|
||||
* /** {@inheritdoc}
|
||||
*/
|
||||
public function signRequest(\UglyRobot\Infinite_Uploads\Psr\Http\Message\RequestInterface $request, \UglyRobot\Infinite_Uploads\Aws\Credentials\CredentialsInterface $credentials)
|
||||
{
|
||||
return $request;
|
||||
}
|
||||
/**
|
||||
* /** {@inheritdoc}
|
||||
*/
|
||||
public function presign(\UglyRobot\Infinite_Uploads\Psr\Http\Message\RequestInterface $request, \UglyRobot\Infinite_Uploads\Aws\Credentials\CredentialsInterface $credentials, $expires, array $options = [])
|
||||
{
|
||||
return $request;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user