Remove unused resource

pull/4644/head
Daniel Supernault 2023-09-10 01:13:45 -06:00
rodzic 941736ce6c
commit 8fa2afe016
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 0 dodań i 20 usunięć

Wyświetl plik

@ -1,20 +0,0 @@
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use App\Services\AccountService;
class StoryViewerResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return AccountService::get($this->profile_id, false);
}
}