Esempio n. 1
0
 /**
  * ForgetSend
  * Forgets (or resets) the class variables between each split test campaign being sent.
  *
  * This one just sets the _percentage_send_maximum variable back to the default (null)
  * then calls the parent ForgetSend method to do the rest.
  *
  * @uses _percentage_send_maximum
  * @uses Splittest_Send_API::ForgetSend
  *
  * @return Mixed Returns the status from the parent ForgetSend method.
  */
 protected function ForgetSend()
 {
     $this->_percentage_send_maximum = null;
     return parent::ForgetSend();
 }