public function run()
 {
     $send = $this->check();
     $toUpdate = Subscription::whereIn('id', $this->subscriptionIds)->get();
     foreach ($toUpdate as $subscription) {
         $subscription->touch();
     }
     return $send;
 }