love_php/app/Contracts/Rewardable.php

11 lines
222 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
declare(strict_types=1);
namespace App\Contracts;
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface Rewardable
{
public function rewards(): MorphMany;
public function primaryId(): string;
}