PHP Classes

File: src/LoggerInterface.php

Recommend this page to a friend!
  Classes of Joseluis Laso   Simple Logger   src/LoggerInterface.php   Download  
File: src/LoggerInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Simple Logger
Log messages and view log filtered files
Author: By
Last change: Update of src/LoggerInterface.php
Date: 1 year ago
Size: 440 bytes
 

Contents

Class file image Download
<?php

namespace JLaso\SimpleLogger;

interface
LoggerInterface
{
   
/**
     * @param string $level
     * @param mixed $data
     */
   
public static function log($level, $data);

   
/**
     * @param mixed $data
     */
   
public static function debug($data);

   
/**
     * @param mixed $data
     */
   
public static function error($data);

   
/**
     * @param mixed $data
     */
   
public static function info($data);
   
}