All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
26 lines
633 B
PHP
26 lines
633 B
PHP
<?php
|
|
|
|
namespace Stripe\ApiOperations;
|
|
|
|
/**
|
|
* Trait for searchable resources.
|
|
*
|
|
* This trait should only be applied to classes that derive from StripeObject.
|
|
*/
|
|
trait Search
|
|
{
|
|
/**
|
|
* @param string $searchUrl
|
|
* @param null|array $params
|
|
* @param null|array|string $opts
|
|
*
|
|
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
|
*
|
|
* @return \Stripe\SearchResult of ApiResources
|
|
*/
|
|
protected static function _searchResource($searchUrl, $params = null, $opts = null)
|
|
{
|
|
return static::_requestPage($searchUrl, \Stripe\SearchResult::class, $params, $opts);
|
|
}
|
|
}
|