Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
back
/
app
/
BaseClasses
:
BasePaymentsSort.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace App\BaseClasses; use App\Models\Payment; use Illuminate\Database\Eloquent\Collection; abstract class BasePaymentsSort { /** * @param Collection|Payment[] $data * @param bool $desc * @return Collection */ abstract public static function sort(Collection $data, bool $desc = false): Collection; }