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;
use Monolog\Logger;
/**
* A log event with predefined level set to NOTICE.
*
* @package wonolog
* @license http://opensource.org/licenses/MIT MIT
*/
final class Notice implements LogDataInterface {
use LogDataTrait;
/**
* @inheritdoc
*/
public function level() {
return Logger::NOTICE;
}
}