for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the PayBreak/basket package.
*
* (c) PayBreak <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PayBreak\Sdk\Gateways;
/**
* Class DictionaryGateway
* @author EA
* @package PayBreak\Sdk\Gateways
class DictionaryGateway extends AbstractGateway
{
* @param $token
* @return array
public function getEmploymentStatuses($token)
return $this->fetchDocument(
'/v4/dictionaries/employment-status',
$token,
'Dictionary Employment Status'
);
}
public function getMaritalStatuses($token)
'/v4/dictionaries/marital-status',
'Dictionary Martial Status'
public function getResidentialStatuses($token)
'/v4/dictionaries/residential-status',
'Dictionary Residential Status'
* @author EB
public function getUploadDocumentTypes($token)
'/v4/dictionaries/upload-document-types',
'Dictionary Document Upload Types'