mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
16 lines
213 B
PHP
16 lines
213 B
PHP
<?php
|
|
|
|
/*
|
|
* Since php does not support enums we emulate it
|
|
* using a abstract class.
|
|
*/
|
|
|
|
/**
|
|
* ENUM of available ReadDirection.
|
|
*/
|
|
abstract class EnumReadDirection {
|
|
const Forward = 1;
|
|
const Backward = 2;
|
|
}
|
|
|
|
?>
|