Skip to content

Instantly share code, notes, and snippets.

View f0xcb's full-sized avatar

Tim f0xcb

  • Mailingwork GmbH
  • 22:12 (UTC +02:00)
View GitHub Profile
@f0xcb
f0xcb / Logger.php
Created July 19, 2022 08:15
Simple PHP Logger Class
<?php declare(strict_types=1);
class Logger
{
/** @var Logger[] */
private static array $instance = [];
const LOG_LEVEL_INFO = 'INFO';
const LOG_LEVEL_WARN = 'WARN';
const LOG_LEVEL_ERROR = 'ERROR';