runff 1.0 commit
This commit is contained in:
29
lib/SimpleSAML/Stats/Output.php
Executable file
29
lib/SimpleSAML/Stats/Output.php
Executable file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* Interface for statistics outputs.
|
||||
*
|
||||
* @package SimpleSAMLphp
|
||||
*/
|
||||
abstract class SimpleSAML_Stats_Output
|
||||
{
|
||||
|
||||
/**
|
||||
* Initialize the output.
|
||||
*
|
||||
* @param SimpleSAML_Configuration $config The configuration for this output.
|
||||
*/
|
||||
public function __construct(SimpleSAML_Configuration $config)
|
||||
{
|
||||
// do nothing by default
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Write a stats event.
|
||||
*
|
||||
* @param array $data The event.
|
||||
*/
|
||||
abstract public function emit(array $data);
|
||||
}
|
||||
Reference in New Issue
Block a user