![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/vendor/omise/omise-php/lib/omise/ |
<?php class OmiseEvent extends OmiseApiResource { const ENDPOINT = 'events'; /** * Retrieves an event. * * @param string $id * @param string $publickey * @param string $secretkey * * @return OmiseEvent */ public static function retrieve($id = '', $publickey = null, $secretkey = null) { return parent::g_retrieve(self::getUrl($id), $publickey, $secretkey); } /** * (non-PHPdoc) * * @see OmiseApiResource::g_reload() */ public function reload() { if ($this['object'] === 'event') { parent::g_reload(self::getUrl($this['id'])); } else { parent::g_reload(self::getUrl()); } } /** * Generate request url. * * @param string $id * * @return string */ private static function getUrl($id = '') { return OMISE_API_URL . self::ENDPOINT . '/' . $id; } }