|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/vendor/xendit/xendit-php/src/ApiOperations/ |
Upload File : |
<?php
/**
* RetrieveAll.php
* php version 7.2.0
*
* @category Trait
* @package Xendit\ApiOperations
* @author Ellen <ellen@xendit.co>
* @license https://opensource.org/licenses/MIT MIT License
* @link https://api.xendit.co
*/
namespace Xendit\ApiOperations;
/**
* Trait RetrieveAll
*
* @category Trait
* @package Xendit\ApiOperations
* @author Ellen <ellen@xendit.co>
* @license https://opensource.org/licenses/MIT MIT License
* @link https://api.xendit.co
*/
trait RetrieveAll
{
/**
* Send request to get all object, e.g Invoice
*
* @return array
*/
public static function retrieveAll($params = [])
{
$url = static::classUrl();
return static::_request('GET', $url, $params);
}
}