Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/inpsyde/wonolog/src/Data/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/inpsyde/wonolog/src
<?php # -*- coding: utf-8 -*-
/*
* This file is part of the Wonolog package.
*
* (c) Inpsyde GmbH
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Inpsyde\Wonolog\Data;
/**
* @package wonolog
* @license http://opensource.org/licenses/MIT MIT
*/
interface LogDataInterface {
const MESSAGE = 'message';
const LEVEL = 'level';
const CHANNEL = 'channel';
const CONTEXT = 'context';
/**
* @return int
*/
public function level();
/**
* @return string
*/
public function message();
/**
* @return string
*/
public function channel();
/**
* @return array
*/
public function context();
}