mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-03-10 04:05:37 +08:00

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;
|
|
} |