How to reuse $dados
, $key
and $postFields
on all methods without having to repeat this data every time within each method? Yes, these variables will always have the same values.
class AllImoveis
{
/**
* Chaves de Autenticação
* @var string
*/
public function listar_imoveis()
{
$dados = array(fields =>array('tipo', 'cidade', 'bairro', 'codigo'));
$key = '82CDA6l0BBepOykevP0472xl9ZoKuIlH';
$postFields = json_encode($dados);
...
...
}
public function listar_imovel()
{
$dados = array(fields =>array('tipo', 'cidade', 'bairro', 'codigo'));
$key = '82CDA6l0BBepOykevP0472xl9ZoKuIlH';
$postFields = json_encode($dados);
...
...
}
}