district09/php_package_dg-api-client

View on GitHub
src/Logger/LogInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace DigipolisGent\API\Logger;

/**
 * Log item interface.
 */
interface LogInterface
{
    /**
     * Cast the log item to a string.
     *
     * @return string
     */
    public function __toString(): string;
}