Sign in

Flora Concierge / FloraConcierge PHP ApiClient · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • floraconcierge-php-apiclient
  • flora
  • api
  • service
  • phone.php
  • update
    1e797e0b
    Anton Shurashov authored
    2014-08-08 03:33:15 +0400  
    Browse Code ยป
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));
    }

}