internetpixels/logging-library

View on GitHub
src/Entities/InfoLogEntity.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace InternetPixels\LoggingLibrary\Entities;

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

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

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

}