components/geolocation/mappers/CountryMapper.php
<?php
namespace CodeJetter\components\geolocation\mappers;
use CodeJetter\core\BaseMapper;
class CountryMapper extends BaseMapper
{
public function add(array $inputs, array $fieldsValues = [], $extraDefinedInputs = [])
{
// TODO: No need to implement the body at this point
}
public function getDefinedInputs($action = null, array $includingInputs = [], array $excludingInputs = [])
{
// TODO: Implement getDefinedInputs() method.
}
public function getFieldsValues(array $inputs, array $definedInputs = [], $action = null)
{
// TODO: Implement getFieldsValues() method.
}
}