2020-11-19 07:38:44 +08:00
|
|
|
<?php
|
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
namespace BookStack\Activity\Models;
|
2020-11-19 07:38:44 +08:00
|
|
|
|
|
|
|
interface Loggable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the string descriptor for this item.
|
|
|
|
*/
|
|
|
|
public function logDescriptor(): string;
|
2021-03-08 06:24:05 +08:00
|
|
|
}
|