/**
  * @param $entry
  * @param $token
  */
 private function createNewActivationForEntry($entry, $token)
 {
     $activation = new Activation();
     $activation->code = $token;
     $activation->entry_id = $entry->id;
     $activation->completed = 0;
     $activation->save();
 }