11 lines
222 B
PHP
11 lines
222 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Contracts;
|
||
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
||
|
|
|
||
|
|
interface Rewardable
|
||
|
|
{
|
||
|
|
public function rewards(): MorphMany;
|
||
|
|
public function primaryId(): string;
|
||
|
|
}
|