14 lines
No EOL
236 B
PHP
Executable file
14 lines
No EOL
236 B
PHP
Executable file
<?php
|
|
|
|
/// @cond ALL
|
|
|
|
/**
|
|
* Identity formatter. Returns what it's given. Implemented for consistency.
|
|
*/
|
|
class LuminousIdentityFormatter extends LuminousFormatter {
|
|
public function format($str) {
|
|
return $str;
|
|
}
|
|
}
|
|
|
|
/// @endcond
|