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