Fix Pint formatting

This commit is contained in:
root
2026-06-09 01:25:14 -04:00
parent 6be4875c5e
commit 20a0b6c4e5
1485 changed files with 11318 additions and 10273 deletions
+5 -4
View File
@@ -2,6 +2,7 @@
namespace App\Services;
use App\Http\Controllers\Api\Reports\FilesController;
use Illuminate\Support\Facades\Route;
/**
@@ -138,10 +139,10 @@ final class ApplicationUrlService
return route('api.timeoff.notify', ['token' => $token]);
}
/** Served by {@see \App\Http\Controllers\Api\Reports\FilesController::receipt} (uploads/receipts). */
/** Served by {@see FilesController::receipt} (uploads/receipts). */
public function forReceiptStorage(?string $filename): ?string
{
if (!$filename) {
if (! $filename) {
return null;
}
$safe = basename(trim($filename));
@@ -149,10 +150,10 @@ final class ApplicationUrlService
return $safe !== '' ? route('api.v1.files.receipt', ['name' => $safe]) : null;
}
/** Served by {@see \App\Http\Controllers\Api\Reports\FilesController::reimb} (uploads/reimbursements). */
/** Served by {@see FilesController::reimb} (uploads/reimbursements). */
public function forReimbursementStorage(?string $filename): ?string
{
if (!$filename) {
if (! $filename) {
return null;
}
$safe = basename(trim($filename));