internetpixels/logging-library

View on GitHub
src/Entities/NoticeLogEntity.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace InternetPixels\LoggingLibrary\Entities;

/**
 * Class NoticeLogEntity
 * @package InternetPixels\LoggingLibrary\Entities
 */
class NoticeLogEntity extends LogEntity {

    /**
     * @var string
     */
    protected $type = 'notice';

    /**
     * @var int
     */
    protected $priority = 20;

}