12 lines
195 B
PHP
12 lines
195 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Contracts;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
||
|
|
|
||
|
|
interface Likerable
|
||
|
|
{
|
||
|
|
public function Likers(): MorphMany;
|
||
|
|
public function primaryId(): string;
|
||
|
|
}
|