diff options
| author | Asko Nõmm <asko@nth.ee> | 2024-11-10 22:28:03 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nth.ee> | 2024-11-10 22:28:03 +0200 |
| commit | 12b6c4b3008c2df545c537943d4e38323cfc174e (patch) | |
| tree | 11e427a794832ac73657da675f3d79949443a3f6 /src/Driver.php | |
Initial commit
Diffstat (limited to 'src/Driver.php')
| -rw-r--r-- | src/Driver.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Driver.php b/src/Driver.php new file mode 100644 index 0000000..2bc6cb8 --- /dev/null +++ b/src/Driver.php @@ -0,0 +1,11 @@ +<?php + +namespace Asko\Loggr; + +/** + * @author Asko Nõmm <asko@faultd.com> + */ +interface Driver +{ + public function log(string $serializedMessage): void; +}
\ No newline at end of file |
