9 lines
97 B
PHP
9 lines
97 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface Logable
|
|
{
|
|
public function primaryId(): string;
|
|
}
|