mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
12 lines
161 B
PHP
12 lines
161 B
PHP
<?php
|
|
|
|
class PassThroughSanitizer extends NodeSanitizer {
|
|
/**
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function sanitize( $data ) {
|
|
return $data;
|
|
}
|
|
}
|