phone.php 287 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php class Flora_Api_Service_Phone extends Flora_Api_Service { const API_SEARCH = 'phone/search'; /** * @param $phone * @return stdClass */ public function search($phone) { return $this->call(self::API_SEARCH, array('phone' => $phone)); } }