Co-authored-by: manoel freitas <manoel.josefneto@gmail.com> Co-committed-by: manoel freitas <manoel.josefneto@gmail.com>
21 lines
408 B
PHP
21 lines
408 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Application\Data;
|
|
|
|
use App\Models\PortfolioCase;
|
|
use App\Models\SiteSetting;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
final readonly class AboutContent
|
|
{
|
|
/**
|
|
* @param Collection<int, PortfolioCase> $featuredCases
|
|
*/
|
|
public function __construct(
|
|
public SiteSetting $settings,
|
|
public Collection $featuredCases,
|
|
) {}
|
|
}
|