From 36cf131839f52f7081355c0f05657e00c7f853cc Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Wed, 21 Jun 2017 21:34:33 +0100 Subject: [PATCH] Tidy up namespace imports --- app/Jobs/ProcessWebMention.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/Jobs/ProcessWebMention.php b/app/Jobs/ProcessWebMention.php index 94e3bbd9..5a24f003 100644 --- a/app/Jobs/ProcessWebMention.php +++ b/app/Jobs/ProcessWebMention.php @@ -3,16 +3,14 @@ namespace App\Jobs; use Mf2; -use App\Note; -use App\WebMention; use GuzzleHttp\Client; +use App\{Note, WebMention}; use Illuminate\Bus\Queueable; -use Illuminate\Queue\SerializesModels; -use Illuminate\Queue\InteractsWithQueue; use Jonnybarnes\WebmentionsParser\Parser; use GuzzleHttp\Exception\RequestException; use Illuminate\Contracts\Queue\ShouldQueue; use App\Exceptions\RemoteContentNotFoundException; +use Illuminate\Queue\{InteractsWithQueue, SerializesModels}; class ProcessWebMention implements ShouldQueue {