Removed unused libs in the vendor folder and moved stripe to the plugins folder then elininated the vendor folder all together, updated all the stripe links
This commit is contained in:
26
plugins/stripe-php-10.5.0/lib/RequestTelemetry.php
Normal file
26
plugins/stripe-php-10.5.0/lib/RequestTelemetry.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class RequestTelemetry.
|
||||
*
|
||||
* Tracks client request telemetry
|
||||
*/
|
||||
class RequestTelemetry
|
||||
{
|
||||
public $requestId;
|
||||
public $requestDuration;
|
||||
|
||||
/**
|
||||
* Initialize a new telemetry object.
|
||||
*
|
||||
* @param string $requestId the request's request ID
|
||||
* @param int $requestDuration the request's duration in milliseconds
|
||||
*/
|
||||
public function __construct($requestId, $requestDuration)
|
||||
{
|
||||
$this->requestId = $requestId;
|
||||
$this->requestDuration = $requestDuration;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user