mirror of
https://github.com/itflow-org/itflow
synced 2026-03-18 19:54:51 +00:00
Added selectable num of records on each listing page, fixed up Pagination Records UI, added new stripe library, further worked on stripe integration, fixed mispelling in client details
This commit is contained in:
26
vendor/stripe-php-7.72.0/lib/RequestTelemetry.php
vendored
Normal file
26
vendor/stripe-php-7.72.0/lib/RequestTelemetry.php
vendored
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