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