Skip to content

Commit 75f0f91

Browse files
authored
Merge pull request #1323 from HDInnovations/analysis-x0eDKB
Apply fixes from StyleCI
2 parents fe33f67 + 8ad9487 commit 75f0f91

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/Http/Controllers/Staff/ChatRoomController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
namespace App\Http\Controllers\Staff;
1515

16-
use App\Models\User;
1716
use App\Http\Controllers\Controller;
1817
use App\Models\Chatroom;
18+
use App\Models\User;
1919
use App\Repositories\ChatRepository;
2020
use Illuminate\Http\Request;
2121

app/Services/Clients/TmdbClient.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -348,11 +348,11 @@ private function formatCasts($credits, $role)
348348
foreach ($credits['cast'] as $credit) {
349349
if ($credit['profile_path'] !== null) {
350350
$casts[] = new Person([
351-
'tmdb' => $credit['id'],
352-
'name' => $credit['name'],
351+
'tmdb' => $credit['id'],
352+
'name' => $credit['name'],
353353
'character' => $credit['character'],
354-
'order' => $credit['order'],
355-
'photo' => 'https://image.tmdb.org/t/p/w138_and_h175_face' . $credit['profile_path']
354+
'order' => $credit['order'],
355+
'photo' => 'https://image.tmdb.org/t/p/w138_and_h175_face'.$credit['profile_path'],
356356
]);
357357
}
358358
}

0 commit comments

Comments
 (0)