Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
@@ -2,12 +2,14 @@
namespace App\Services\PublicWinners;
use App\Controllers\WinnersController;
use App\Models\ClassSection;
use App\Models\Competition;
use Carbon\CarbonInterface;
use Illuminate\Support\Facades\DB;
/**
* legacy {@see \App\Controllers\WinnersController} — public published winners pages.
* legacy {@see WinnersController} — public published winners pages.
*/
class PublicWinnersPortalService
{
@@ -104,7 +106,7 @@ class PublicWinnersPortalService
{
$arr = $c->toArray();
foreach ($arr as $key => $value) {
if ($value instanceof \Carbon\CarbonInterface) {
if ($value instanceof CarbonInterface) {
$arr[$key] = $value->format('Y-m-d H:i:s');
}
}