Event.php
560 Bytes
<?php
namespace Stripe;
class Event extends ApiResource
{
/**
* @param string $id The ID of the event to retrieve.
* @param array|string|null $opts
*
* @return Event
*/
public static function retrieve($id, $opts = null)
{
return self::_retrieve($id, $opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return Collection of Events
*/
public static function all($params = null, $opts = null)
{
return self::_all($params, $opts);
}
}