- remove flux dashboard - add DTOs for the connecter services Deps: - spatie/laravel-data - blade-icons (lucide-icons) - tailwind-merge
15 lines
276 B
PHP
15 lines
276 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Data\Ui\ConnectedServices;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* A collection of connected services.
|
|
*
|
|
* @extends Collection<int, ConnectedServiceData>
|
|
*/
|
|
final class ConnectedServiceCollectionData extends Collection {}
|