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)); } }