diff --git a/lib/SimpleSAML/Stats/Output.php b/lib/SimpleSAML/Stats/Output.php
index b11c7a9c9c9fd51d9af105b4357ee3e63ecf1dbf..8b019c8c9de4ccefa253a7e7016b3462afc2a875 100644
--- a/lib/SimpleSAML/Stats/Output.php
+++ b/lib/SimpleSAML/Stats/Output.php
@@ -1,27 +1,29 @@
 <?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);
 }