Remove redundant typing from DocBlocks

This commit is contained in:
Shift
2024-02-16 21:13:14 +00:00
parent 3487f52a6b
commit f3a5be79dc
53 changed files with 0 additions and 363 deletions

View File

@@ -12,17 +12,11 @@ use Illuminate\Support\Facades\RateLimiter;
class HealthController extends Controller
{
/**
* @return int
*/
private static function getUsers(): int
{
return User::count();
}
/**
* @return int
*/
private static function getItems(): int
{
return Item::select('id')
@@ -34,7 +28,6 @@ class HealthController extends Controller
/**
* Handle the incoming request.
*
* @param Request $request
* @return JsonResponse|Response
* @throws BindingResolutionException
*/