1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-27 22:01:08 +03:00
bookstack/app/Interfaces/Loggable.php
Dan Brown 3f7180fa99
Started widening of activity logging
In progress, Need to implement much of the logging in controllers.
Also cleaned up base controller along the way.
2020-11-18 23:40:39 +00:00

11 lines
171 B
PHP

<?php
namespace BookStack\Interfaces;
interface Loggable
{
/**
* Get the string descriptor for this item.
*/
public function logDescriptor(): string;
}