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
+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));