mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-18 01:32:46 +08:00
![Dan Brown](/assets/img/avatar_default.png)
In progress, Need to implement much of the logging in controllers. Also cleaned up base controller along the way.
11 lines
171 B
PHP
11 lines
171 B
PHP
<?php
|
|
|
|
namespace BookStack\Interfaces;
|
|
|
|
interface Loggable
|
|
{
|
|
/**
|
|
* Get the string descriptor for this item.
|
|
*/
|
|
public function logDescriptor(): string;
|
|
} |