mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
/**
|
|
* StreamConfig has the capability to create a specific LogStream
|
|
* object depending on a configured LogStream*Config object.
|
|
*/
|
|
abstract class LogStreamConfig {
|
|
protected $_logStreamConfigObj = null;
|
|
|
|
public abstract function LogStreamFactory($o);
|
|
|
|
}
|
|
?>
|