コード例 #1
0
 /**
  * Execute the job.
  *
  * @return void
  */
 public function handle()
 {
     // If not a reply, do nothing.
     if (is_null($this->tweet['in_reply_to_status_id'])) {
         return;
     }
     // Find the Trigger Tweet's ID
     $triggerTweetId = $this->twitter->find($this->tweet['in_reply_to_status_id'])['in_reply_to_status_id'];
     // If no trigger tweet found, do nothing.
     if (is_null($triggerTweetId)) {
         return;
     }
     // Close the conversation
     echo 'Closing conversation with Trigger Tweet ID: ' . $triggerTweetId;
     Conversation::closeByTriggerTweetId($triggerTweetId, $this->tweet);
 }