JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ namespace App\Xendit\ApiOperations; /** * Trait RetrieveAll * * @category Trait * @package Xendit\ApiOperations * @author Ellen * @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); } }