internetpixels/logging-library

View on GitHub
src/Entities/ErrorLogEntity.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace InternetPixels\LoggingLibrary\Entities;

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

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

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

}