puiu91
9/28/2015 - 4:46 PM

how-to-refactor-this.php

<?php
/**
* Checks for a partial match in the geocode response
* 
* @return boolean
*/
public function isPartialResponse() {	
	if (isset($this->geocodeResponse['results'][0]['partial_match']) && $this->geocodeResponse['results'][0]['partial_match'] == 'true')
		return true;

	return false;
}