guibranco/Pancake

View on GitHub
src/ILogger.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace GuiBranco\Pancake;

interface ILogger
{
    public function log(string $message, object $details): bool;
}