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
  • discount.php
  • update
    9b861e49
    Anton Shurashov authored
    2014-10-25 05:09:02 +0400  
    Browse Code ยป
discount.php 285 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
class Flora_Api_Service_Discount extends Flora_Api_Service
{
    const API_EMAIL = "discount/email";

    /**
     * @param $email
     * @return bool
     */
    public function email($email)
    {
        return $this->call(self::API_EMAIL, array('email' => $email));
    }

}