Skip to content
Snippets Groups Projects
Commit 5c8408b6 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Reformat the SimpleSAML_Stats_Output class.

parent 14e4f77f
No related branches found
No related tags found
No related merge requests found
<?php
/**
* Interface for statistics outputs.
*
* @package simpleSAMLphp
* @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. */
}
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);
/**
* Write a stats event.
*
* @param array $data The event.
*/
abstract public function emit(array $data);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment