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