mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
12 lines
199 B
PHP
12 lines
199 B
PHP
|
<?php
|
||
|
|
||
|
class PassThroughSanitizer extends NodeSanitizer implements NodeTypeSanitizerInterface {
|
||
|
/**
|
||
|
* @param $data
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function sanitize( $data ) {
|
||
|
return $data;
|
||
|
}
|
||
|
}
|